/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-repacker.hh | 125 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 D | reg.py | 465 # 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 D | uthash.h | 178 (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 D | nine_memory_helper.c | 341 static void move_region(struct list_head *tail, struct nine_memfd_file_region *region) in move_region() argument 346 list_addtail(®ion->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(®ion->list, prev_region ? &prev_region->list : tail); in move_region_ordered_merge()
|
/third_party/node/deps/v8/third_party/ittapi/src/ittnotify/ |
H A D | ittnotify_static.h | 199 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 D | coap_uthash_internal.h | 220 (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 D | reg.py | 464 # 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 D | OpsTask.cpp | 195 // 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 D | reg.py | 475 # 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 D | reg.py | 476 # 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 D | linux.c | 191 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 D | dynlink.c | 125 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 D | dynlink.c | 125 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 D | packet_internal.h | 32 PacketListEntry *head, *tail; member
|
/third_party/ffmpeg/libavutil/ |
H A D | eval.h | 121 * 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 D | syscall_cp.s | 29 tail __cancel
|
/third_party/musl/src/thread/riscv32/ |
H A D | syscall_cp.s | 29 tail __cancel
|
/third_party/libwebsockets/lib/system/smd/ |
H A D | private-lib-system-smd.h | 60 lws_smd_msg_t *tail; member
|
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/ |
H A D | cipher_rc4_hmac_md5.h | 20 MD5_CTX head, tail, md; member
|
/third_party/openssl/providers/implementations/ciphers/ |
H A D | cipher_rc4_hmac_md5.h | 20 MD5_CTX head, tail, md; member
|
/third_party/selinux/checkpolicy/ |
H A D | queue.h | 26 queue_node_ptr_t tail; member
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/examples/ |
H A D | wps-ap-cli | 19 cpin=`$CLI wps_check_pin "$pin" | tail -1`
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/ |
H A D | wps-ap-cli | 19 cpin=`$CLI wps_check_pin "$pin" | tail -1`
|
/third_party/mesa3d/src/mapi/new/ |
H A D | genCommon.py | 209 if ch.tail is not None: 210 text += ch.tail
|
/third_party/ltp/testcases/kernel/fs/mongo/ |
H A D | mongo.pl | 205 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`;
|