Home
last modified time | relevance | path

Searched refs:tail (Results 301 - 325 of 691) sorted by relevance

1...<<11121314151617181920>>...28

/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-repacker.hh125 int64_t table_size = obj.tail - obj.head; in distance_modifier()
212 size_t size = vertices_[i].obj.tail - vertices_[i].obj.head; in serialize()
520 clone->obj.tail = child.obj.tail; in duplicate()
779 current_pos += v.obj.tail - v.obj.head; in update_positions()
832 int64_t child_weight = (child.tail - child.head) + in update_distances()
/third_party/EGL/api/
H A Dreg.py465 # lxml.etree has elem.text followed by (elem[i], elem[i].tail)
471 # declaration. Otherwise append its contents and tail contents.
474 tail = noneStr(elem.tail)
476 pdecl += self.genOpts.apientry + text + tail
477 tdecl += '(' + self.genOpts.apientryp + 'PFN' + text.upper() + 'PROC' + tail + ')'
479 pdecl += text + tail
480 tdecl += text + tail
620 s += self.genOpts.apientry + noneStr(elem.tail)
622 s += noneStr(elem.text) + noneStr(elem.tail)
[all...]
/third_party/libdrm/intel/
H A Duthash.h178 (head)->hh.tbl->tail = &((head)->hh); \
228 (add)->hh.prev = ELMT_FROM_HH((head)->hh.tbl, (head)->hh.tbl->tail); \
229 (head)->hh.tbl->tail->next = (add); \
230 (head)->hh.tbl->tail = &((add)->hh); \
349 if ((delptr) == ELMT_FROM_HH((head)->hh.tbl,(head)->hh.tbl->tail)) { \
350 (head)->hh.tbl->tail = \
922 (head)->hh.tbl->tail = _hs_tail; \
1034 struct UT_hash_handle *tail; /* tail hh in app order, for fast append */ member
/third_party/mesa3d/src/gallium/frontends/nine/
H A Dnine_memory_helper.c341 static void move_region(struct list_head *tail, struct nine_memfd_file_region *region) in move_region() argument
346 list_addtail(&region->list, tail); in move_region()
350 static void move_region_ordered(struct list_head *tail, struct nine_memfd_file_region *region)
353 struct list_head *insertion_point = tail;
358 LIST_FOR_EACH_ENTRY(cur_region, tail, list) {
368 static void move_region_ordered_merge(struct nine_allocator *allocator, struct list_head *tail, struct nine_memfd_file_region *region) in move_region_ordered_merge() argument
375 LIST_FOR_EACH_ENTRY(p, tail, list) { in move_region_ordered_merge()
402 list_add(&region->list, prev_region ? &prev_region->list : tail); in move_region_ordered_merge()
/third_party/node/deps/v8/third_party/ittapi/src/ittnotify/
H A Dittnotify_static.h199 ITT_STUBV(ITTAPI, void, relation_add_to_current, (const __itt_domain *domain, __itt_relation relation, __itt_id tail), (ITT_FORMAT domain, relation, tail), relation_add_to_current, __itt_group_structure, "%p, %lu, %p")
200 ITT_STUBV(ITTAPI, void, relation_add, (const __itt_domain *domain, __itt_id head, __itt_relation relation, __itt_id tail), (ITT_FORMAT domain, head, relation, tail), relation_add, __itt_group_structure, "%p, %p, %lu, %p")
318 ITT_STUBV(ITTAPI, void, relation_add_to_current_ex, (const __itt_domain *domain, __itt_clock_domain* clock_domain, unsigned long long timestamp, __itt_relation relation, __itt_id tail), (ITT_FORMAT domain, clock_domain, timestamp, relation, tail), relation_add_to_current_ex, __itt_group_structure, "%p, %p, %lu, %d, %lu")
319 ITT_STUBV(ITTAPI, void, relation_add_ex, (const __itt_domain *domain, __itt_clock_domain* clock_domain, unsigned long long timestamp, __itt_id head, __itt_relation relation, __itt_id tail), (ITT_FORMAT domain, clock_domain, timestamp, head, relation, tail), relation_add_ex, __itt_group_structure, "%p, %p, %lu, %lu, %d, %lu")
/third_party/libcoap/include/coap3/
H A Dcoap_uthash_internal.h220 (head)->hh.tbl->tail = &((head)->hh); \
282 (add)->hh.prev = ELMT_FROM_HH((head)->hh.tbl, (head)->hh.tbl->tail); \
283 (head)->hh.tbl->tail->next = (add); \
284 (head)->hh.tbl->tail = &((add)->hh); \
462 if (_hd_hh_del == (head)->hh.tbl->tail) { \
463 (head)->hh.tbl->tail = HH_FROM_ELMT((head)->hh.tbl, _hd_hh_del->prev); \
964 (head)->hh.tbl->tail = _hs_tail; \
1096 struct UT_hash_handle *tail; /* tail hh in app order, for fast append */ member
/third_party/openGLES/xml/
H A Dreg.py464 # lxml.etree has elem.text followed by (elem[i], elem[i].tail)
470 # declaration. Otherwise append its contents and tail contents.
473 tail = noneStr(elem.tail)
475 pdecl += self.genOpts.apientry + text + tail
476 tdecl += '(' + self.genOpts.apientryp + 'PFN' + text.upper() + 'PROC' + tail + ')'
478 pdecl += text + tail
479 tdecl += text + tail
611 s += self.genOpts.apientry + noneStr(elem.tail)
613 s += noneStr(elem.text) + noneStr(elem.tail)
[all...]
/third_party/skia/src/gpu/ops/
H A DOpsTask.cpp195 // We process ops in chain b from head to tail. We attempt to merge with nodes in a, starting in DoConcat()
196 // at chain a's tail and working toward the head. We produce one of the following outcomes: in DoConcat()
199 // 3) b's head is popped from chain a and added at the tail of a. in DoConcat()
200 // After result 3 we don't want to attempt to merge the next head of b with the new tail of a, in DoConcat()
202 // original tail of a and start our iteration of a there. We also track the bounds of the nodes in DoConcat()
203 // appended to chain a that will be skipped for bounds testing. If the original tail of a is in DoConcat()
204 // merged into an op in b (case 2) then we advance the "original tail" towards the head of a. in DoConcat()
205 GrOp* origATail = chainA.tail(); in DoConcat()
210 bool noSkip = (origATail == chainA.tail()); in DoConcat()
217 (a == chainA.tail()) || can_reorde in DoConcat()
[all...]
/third_party/skia/third_party/externals/opengl-registry/xml/
H A Dreg.py475 # lxml.etree has elem.text followed by (elem[i], elem[i].tail)
481 # declaration. Otherwise append its contents and tail contents.
484 tail = noneStr(elem.tail)
486 pdecl += self.genOpts.apientry + text + tail
487 tdecl += '(' + self.genOpts.apientryp + 'PFN' + text.upper() + 'PROC' + tail + ')'
489 pdecl += text + tail
490 tdecl += text + tail
622 s += self.genOpts.apientry + noneStr(elem.tail)
624 s += noneStr(elem.text) + noneStr(elem.tail)
[all...]
/third_party/skia/third_party/externals/egl-registry/api/
H A Dreg.py476 # lxml.etree has elem.text followed by (elem[i], elem[i].tail)
482 # declaration. Otherwise append its contents and tail contents.
485 tail = noneStr(elem.tail)
487 pdecl += self.genOpts.apientry + text + tail
488 tdecl += '(' + self.genOpts.apientryp + 'PFN' + text.upper() + 'PROC' + tail + ')'
490 pdecl += text + tail
491 tdecl += text + tail
631 s += self.genOpts.apientry + noneStr(elem.tail)
633 s += noneStr(elem.text) + noneStr(elem.tail)
[all...]
/third_party/libuv/src/unix/
H A Dlinux.c191 uint32_t tail; member
204 uint32_t tail; member
613 iou->sqtail = (uint32_t*) (sq + params.sq_off.tail); in uv__iou_init()
618 iou->cqtail = (uint32_t*) (sq + params.cq_off.tail); in uv__iou_init()
794 uint32_t tail; in uv__iou_get_sqe() local
803 tail = *iou->sqtail; in uv__iou_get_sqe()
806 if ((head & mask) == ((tail + 1) & mask)) in uv__iou_get_sqe()
809 slot = tail & mask; in uv__iou_get_sqe()
1169 uint32_t tail; in uv__poll_io_uring() local
1177 tail in uv__poll_io_uring()
[all...]
/third_party/musl/porting/liteos_a/user/ldso/
H A Ddynlink.c125 static struct dso *head, *tail, *fini_head, *syms_tail, *lazy_head; variable
1050 tail->next = &ldso; in load_library()
1051 ldso.prev = tail; in load_library()
1052 tail = &ldso; in load_library()
1203 tail->next = p; in load_library()
1204 p->prev = tail; in load_library()
1205 tail = p; in load_library()
1334 /* Chop off the tail of the list of dsos that participate in in revert_syms()
1907 head = tail = syms_tail = &app; in __dls3()
1938 vdso.prev = tail; in __dls3()
[all...]
/third_party/musl/porting/liteos_a/user_debug/ldso/
H A Ddynlink.c125 static struct dso *head, *tail, *fini_head, *syms_tail, *lazy_head; variable
1050 tail->next = &ldso; in load_library()
1051 ldso.prev = tail; in load_library()
1052 tail = &ldso; in load_library()
1202 tail->next = p; in load_library()
1203 p->prev = tail; in load_library()
1204 tail = p; in load_library()
1333 /* Chop off the tail of the list of dsos that participate in in revert_syms()
1906 head = tail = syms_tail = &app; in __dls3()
1937 vdso.prev = tail; in __dls3()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dpacket_internal.h32 PacketListEntry *head, *tail; member
/third_party/ffmpeg/libavutil/
H A Deval.h121 * returns a value of zero and the value returned in tail is the value
130 * @param tail if non-NULL puts here the pointer to the char next
133 double av_strtod(const char *numstr, char **tail);
/third_party/musl/src/thread/riscv64/
H A Dsyscall_cp.s29 tail __cancel
/third_party/musl/src/thread/riscv32/
H A Dsyscall_cp.s29 tail __cancel
/third_party/libwebsockets/lib/system/smd/
H A Dprivate-lib-system-smd.h60 lws_smd_msg_t *tail; member
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
H A Dcipher_rc4_hmac_md5.h20 MD5_CTX head, tail, md; member
/third_party/openssl/providers/implementations/ciphers/
H A Dcipher_rc4_hmac_md5.h20 MD5_CTX head, tail, md; member
/third_party/selinux/checkpolicy/
H A Dqueue.h26 queue_node_ptr_t tail; member
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/examples/
H A Dwps-ap-cli19 cpin=`$CLI wps_check_pin "$pin" | tail -1`
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/
H A Dwps-ap-cli19 cpin=`$CLI wps_check_pin "$pin" | tail -1`
/third_party/mesa3d/src/mapi/new/
H A DgenCommon.py209 if ch.tail is not None:
210 text += ch.tail
/third_party/ltp/testcases/kernel/fs/mongo/
H A Dmongo.pl205 my $df = `df -k $mp | tail -n 1`;
349 $fr16 =`find $TESTDIR -type f -size +16k | xargs $TOPDIR/map5 | $TOPDIR/summ | tail -n 1 2>&1`;

Completed in 26 milliseconds

1...<<11121314151617181920>>...28