| /src/sys/external/bsd/drm2/dist/drm/i915/display/ |
| intel_frontbuffer.h | 60 void intel_frontbuffer_put(struct intel_frontbuffer *front); 65 struct intel_frontbuffer *front; local 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...] |
| 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 208 container_of(ref, typeof(*front), write); 210 kref_get(&front->ref); 217 struct intel_frontbuffer *front = local 218 container_of(ref, typeof(*front), write); 220 intel_frontbuffer_flush(front, ORIGIN_CS) 227 struct intel_frontbuffer *front = variable in typeref:struct:intel_frontbuffer 249 struct intel_frontbuffer *front; local [all...] |
| /src/usr.bin/spell/spellprog/ |
| look.c | 58 look(u_char *string, u_char *front, u_char *back) 68 front = binary_search(string, front, back); 69 front = linear_search(string, front, back); 71 return (front != NULL); 75 * Binary search for "string" in memory between "front" and "back". 82 * front points to the beginning of a line at or before the first 89 * front = NULL; 94 * p = first newline after halfway point from front to back [all...] |
| 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/usr.bin/look/ |
| look.c | 101 char *back, *front, *string, *p; local 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/tests/ |
| sanitizer_list_test.cc | 37 CHECK_EQ(l->front(), i1); 41 CHECK_EQ(l->front(), i2); 45 CHECK_EQ(l->front(), i3); 49 CHECK_EQ(l->front(), i4); 53 CHECK_EQ(l->front(), i5); 57 CHECK_EQ(l->front(), i6); 81 CHECK_EQ(l.front(), x); 89 CHECK_EQ(l.front(), x); 98 CHECK_EQ(l.front(), z); 104 CHECK_EQ(l.front(), y) [all...] |
| /src/usr.sbin/altq/libaltq/ |
| qop.c | 1038 struct fltrinfo *fp, *front, *back, *prev = NULL; local 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...] |
| /src/sys/external/bsd/drm2/dist/drm/i915/gem/ |
| i915_gem_object.c | 378 struct intel_frontbuffer *front; local 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 392 front = __intel_frontbuffer_get(obj); 393 if (front) { 394 intel_frontbuffer_invalidate(front, origin); 395 intel_frontbuffer_put(front); [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/ |
| function_call_trie_test.cc | 39 ASSERT_EQ(R.front()->FId, 1); 40 ASSERT_EQ(R.front()->CallCount, 1u); 41 ASSERT_EQ(R.front()->CumulativeLocalTime, 1u); 54 ASSERT_EQ(R.front()->FId, 1); 55 ASSERT_EQ(R.front()->CallCount, 1u); 56 ASSERT_EQ(R.front()->CumulativeLocalTime, 1u); 69 ASSERT_EQ(R.front()->FId, 1); 70 ASSERT_EQ(R.front()->CallCount, 1u); 71 ASSERT_EQ(R.front()->CumulativeLocalTime,
|
| /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
|
| sanitizer_quarantine.h | 249 QuarantineBatch *b = list_.front(); 257 QuarantineBatch *current = list_.front();
|
| sanitizer_thread_registry.cc | 323 tctx = dead_threads_.front(); 336 ThreadContextBase *tctx = invalid_threads_.front();
|
| sanitizer_common.cc | 155 AddressRange *r = ranges_.front();
|
| sanitizer_allocator_primary32.h | 169 TransferBatch *b = sci->free_list.front();
|
| sanitizer_win.cc | 438 module_infos[i].base_address = modules[i].ranges().front()->beg;
|
| /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 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/sys/external/gpl2/dts/dist/arch/arm/boot/dts/nxp/imx/ |
| imx6qdl-cubox-i.dtsi | 65 label = "imx6:red:front"; 183 pinctrl_cubox_i_pwm1: cubox-i-pwm1-front-led {
|
| /src/usr.sbin/sysinst/ |
| README.md_defs | 34 The boot partition is always inserted at the front of the suggested default
|
| /src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
| xray_segmented_array.h | 430 T &front() const XRAY_NEVER_INSTRUMENT {
|
| /src/usr.bin/make/unit-tests/ |
| varmisc.mk | 81 # Appending to an undefined variable does not add a space in front.
|
| /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| FuzzerLoop.cpp | 776 assert(SizedFiles.front().Size <= SizedFiles.back().Size);
|
| /src/sys/external/bsd/drm2/dist/drm/xen/ |
| xen_drm_front.c | 32 #include <xen/xen-front-pgdir-shbuf.h> 651 DRM_DEBUG("Backend state is %s, front is %s\n", 758 * Normally when front driver removed backend will finally go into
|