/src/sys/external/bsd/drm2/dist/drm/i915/display/ |
intel_frontbuffer.c | 168 void __intel_fb_invalidate(struct intel_frontbuffer *front, 172 struct drm_i915_private *i915 = to_i915(front->obj->base.dev); 187 void __intel_fb_flush(struct intel_frontbuffer *front, 191 struct drm_i915_private *i915 = to_i915(front->obj->base.dev); 207 struct intel_frontbuffer *front = local in function:frontbuffer_active 208 container_of(ref, typeof(*front), write); 210 kref_get(&front->ref); 217 struct intel_frontbuffer *front = local in function:frontbuffer_retire 218 container_of(ref, typeof(*front), write); 220 intel_frontbuffer_flush(front, ORIGIN_CS) 227 struct intel_frontbuffer *front = local in function:frontbuffer_release 249 struct intel_frontbuffer *front; local in function:intel_frontbuffer_get [all...] |
intel_frontbuffer.h | 60 void intel_frontbuffer_put(struct intel_frontbuffer *front); 65 struct intel_frontbuffer *front; local in function:__intel_frontbuffer_get 72 front = rcu_dereference(obj->frontbuffer); 73 if (!front) 76 if (unlikely(!kref_get_unless_zero(&front->ref))) 79 if (likely(front == rcu_access_pointer(obj->frontbuffer))) 82 intel_frontbuffer_put(front); 86 return front; 92 void __intel_fb_invalidate(struct intel_frontbuffer *front, 98 * @front: GEM object to invalidat [all...] |
/src/usr.bin/look/ |
look.c | 101 char *back, *front, *string, *p; local in function:main 149 if ((front = mmap(NULL, len, 152 back = front + len; 153 exit(look(string, front, back)); 157 look(char *string, char *front, char *back) 173 front = binary_search(string, front, back); 174 front = linear_search(string, front, back); 176 if (front) [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_list.h | 84 Item *front() { return first_; } function in struct:__sanitizer::IntrusiveList 85 const Item *front() const { return first_; } function in struct:__sanitizer::IntrusiveList
|
/src/sys/external/bsd/drm2/dist/drm/i915/gem/ |
i915_gem_object.c | 378 struct intel_frontbuffer *front; local in function:__i915_gem_object_flush_frontbuffer 380 front = __intel_frontbuffer_get(obj); 381 if (front) { 382 intel_frontbuffer_flush(front, origin); 383 intel_frontbuffer_put(front); 390 struct intel_frontbuffer *front; local in function:__i915_gem_object_invalidate_frontbuffer 392 front = __intel_frontbuffer_get(obj); 393 if (front) { 394 intel_frontbuffer_invalidate(front, origin); 395 intel_frontbuffer_put(front); [all...] |
/src/usr.bin/spell/spellprog/ |
spellprog.c | 281 unsigned char *front; member in struct:wlist 362 wlists[i].front = mmap(NULL, (size_t)sb.st_size, PROT_READ, 364 if (wlists[i].front == MAP_FAILED) 366 wlists[i].back = wlists[i].front + (size_t)sb.st_size; 855 if ((rval = look((unsigned char *)bp, wlists[i].front,
|
/src/lib/libc/rpc/ |
rpcb_clnt.c | 104 static struct address_cache *front; variable in typeref:struct:address_cache * 176 for (cptr = front; cptr != NULL; cptr = cptr->ac_next) { 197 for (cptr = front; cptr != NULL; cptr = cptr->ac_next) { 208 front = cptr->ac_next; 264 ad_cache->ac_next = front; 265 front = ad_cache; 269 cptr = front; 289 ad_cache->ac_next = front; 290 front = ad_cache; 292 front = ad_cache [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/ |
i915_vma.c | 1254 struct intel_frontbuffer *front; local in function:i915_vma_move_to_active 1256 front = __intel_frontbuffer_get(obj); 1257 if (unlikely(front)) { 1258 if (intel_frontbuffer_invalidate(front, ORIGIN_CS)) 1259 i915_active_add_request(&front->write, rq); 1260 intel_frontbuffer_put(front);
|
/src/usr.sbin/altq/libaltq/ |
qop.c | 1038 struct fltrinfo *fp, *front, *back, *prev = NULL; local in function:add_filter_rule 1043 front = fp; 1047 front = fltrinfo; 1051 relation = filt_check_relation(&front->fltr, &back->fltr); 1059 if (front->dontwarn == 0 && back->dontwarn == 0) 1062 front->clinfo->clname, front->line_no, 1075 if (front->clinfo == back->clinfo) 1077 if (front->dontwarn == 0 && back->dontwarn == 0) 1080 front->clinfo->clname, front->line_no [all...] |