Home
last modified time | relevance | path

Searched refs:tail (Results 526 - 550 of 729) sorted by relevance

1...<<21222324252627282930

/third_party/skia/src/core/
H A DSkTInternalLList.h103 * at the tail.
189 T* tail() const { return fTail; } in tail() function in SkTInternalLList
/third_party/skia/src/gpu/ops/
H A DOpsTask.h191 // Attempts to add 'op' to this chain either by merging or adding to the tail. Returns
212 GrOp* tail() const { return fTail; } in tail() function in skgpu::v1::OpsTask::CanDiscardPreviousOps::OpChain::List
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dfunction.cpp233 if (spvOpcodeIsReturn(block->tail()->opcode()) && in HasEarlyReturn()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dfunction.cpp233 if (spvOpcodeIsReturn(block->tail()->opcode()) && in HasEarlyReturn()
/third_party/typescript/tests/baselines/reference/
H A DramdaToolsNoInfinite.js12 ((...t: T) => any) extends ((_: any, ...tail: infer TT) => any)
/third_party/spirv-tools/source/opt/
H A Dfunction.cpp231 if (spvOpcodeIsReturn(block->tail()->opcode()) && in HasEarlyReturn()
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Ddbus.c72 dbus_irb_t *tail; member
271 ASSERT(q->tail != b); in q_enq()
274 if (q->tail) { in q_enq()
275 q->tail->next = b; in q_enq()
276 q->tail = b; in q_enq()
278 q->head = q->tail = b; in q_enq()
302 q->tail = q->head; in q_deq()
/third_party/musl/src/malloc/oldmalloc/
H A Dmalloc.c55 mal.bins[i].head = mal.bins[i].tail = BIN_TO_CHUNK(i); in lock_bin()
282 self->prev = mal.bins[i].tail; in bin_chunk()
333 /* Allocate two more pages for protection, loacted at the head and tail of user memory respectively */ in malloc()
/third_party/musl/porting/liteos_a/user/src/malloc/oldmalloc/
H A Dmalloc.c51 mal.bins[i].head = mal.bins[i].tail = BIN_TO_CHUNK(i); in lock_bin()
263 self->prev = mal.bins[i].tail; in bin_chunk()
/third_party/musl/porting/liteos_a/user_debug/src/malloc/oldmalloc/
H A Dmalloc.c53 mal.bins[i].head = mal.bins[i].tail = BIN_TO_CHUNK(i); in lock_bin()
270 self->prev = mal.bins[i].tail; in bin_chunk()
314 /* Allocate two more pages for protection, loacted at the head and tail of user memory respectively */ in malloc()
/third_party/node/deps/v8/src/baseline/loong64/
H A Dbaseline-assembler-loong64-inl.h132 __ CommentForOffHeapTrampoline("tail call", builtin)); in TailCallBuiltin()
319 static void Pop(BaselineAssembler* basm, Register reg, T... tail) { in Pop()
321 PopAllHelper<T...>::Pop(basm, tail...); in Pop()
/third_party/node/deps/v8/src/baseline/ppc/
H A Dbaseline-assembler-ppc-inl.h224 __ CommentForOffHeapTrampoline("tail call", builtin)); in TailCallBuiltin()
456 static void Pop(BaselineAssembler* basm, Register reg, T... tail) { in Pop()
458 PopAllHelper<T...>::Pop(basm, tail...); in Pop()
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_format.py464 head, tail, chars, lines = self.formatter.get_region()
467 set_(head, tail, chars, lines)
/third_party/json/tools/cpplint/
H A Dcpplint.py1964 head, quote, tail = match.groups()
1968 second_quote = tail.find('"')
1971 elided = tail[second_quote + 1:]
1986 match_literal = Match(r'^((?:\'?[0-9a-zA-Z_])*)(.*)$', "'" + tail)
1990 second_quote = tail.find('\'')
1993 elided = tail[second_quote + 1:]
2278 (head, tail) = os.path.split(path)
2282 if tail == path: # relative paths end
2283 lst.append(tail)
2287 lst.append(tail)
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/i915/gt/
H A Dintel_engine_cs.c1535 drm_printf(m, "[head %04x, postfix %04x, tail %04x, batch 0x%08x_%08x]:\n", rq->head, rq->postfix, rq->tail, in print_request_ring()
1539 size = rq->tail - rq->head; in print_request_ring()
1540 if (rq->tail < rq->head) { in print_request_ring()
1550 if (rq->tail < head) { in print_request_ring()
1619 drm_printf(m, "\t\tring->tail: 0x%08x\n", rq->ring->tail); in intel_engine_dump()
/third_party/ffmpeg/libavdevice/
H A Ddecklink_dec.cpp495 q->pkt_list.tail = NULL; in avpacket_queue_flush()
543 if (!q->pkt_list.tail) { in avpacket_queue_put()
546 q->pkt_list.tail->next = pkt1; in avpacket_queue_put()
549 q->pkt_list.tail = pkt1; in avpacket_queue_put()
570 q->pkt_list.tail = NULL; in avpacket_queue_get()
/third_party/cups-filters/filter/foomatic-rip/
H A Doptions.c2140 page_range_t *head = NULL, *tail = NULL; in parse_page_ranges() local
2169 if (tail) { in parse_page_ranges()
2170 tail->next = pr; in parse_page_ranges()
2171 tail = pr; in parse_page_ranges()
2174 tail = head = pr; in parse_page_ranges()
/third_party/littlefs/runners/
H A Dtest_runner.c71 static uintmax_t leb16_parse(const char *s, char **tail) { in leb16_parse() argument
74 if (tail) { in leb16_parse()
75 *tail = (char*)s; in leb16_parse()
103 if (tail) { in leb16_parse()
104 *tail = (char*)s; in leb16_parse()
H A Dbench_runner.c71 static uintmax_t leb16_parse(const char *s, char **tail) { in leb16_parse() argument
74 if (tail) { in leb16_parse()
75 *tail = (char*)s; in leb16_parse()
103 if (tail) { in leb16_parse()
104 *tail = (char*)s; in leb16_parse()
/third_party/ntfs-3g/libntfs-3g/
H A Drunlist.c254 /* Move the tail of @dst out of the way, then copy in @src. */ in ntfs_rl_append()
341 /* Move the tail of @dst out of the way, then copy in @src. */ in ntfs_rl_insert()
391 int tail; /* Start of tail of @dst */ in ntfs_rl_replace() local
428 * tail - Offset of the tail of @dst in ntfs_rl_replace()
429 * Nominally: @tail = @loc + 1 (location, skipping the replaced run) in ntfs_rl_replace()
432 tail = loc + right + 1; in ntfs_rl_replace()
441 /* Move the tail of @dst out of the way, then copy in @src. */ in ntfs_rl_replace()
442 ntfs_rl_mm(dst, marker, tail, dsiz in ntfs_rl_replace()
[all...]
/third_party/python/Python/
H A Dfileutils.c2007 const wchar_t *tail; in _Py_isabs() local
2008 HRESULT hr = PathCchSkipRoot(path, &tail); in _Py_isabs()
2009 if (FAILED(hr) || path == tail) { in _Py_isabs()
2012 if (tail == &path[1] && (path[0] == SEP || path[0] == ALTSEP)) { in _Py_isabs()
2016 if (tail == &path[2] && path[1] == L':') { in _Py_isabs()
/third_party/node/deps/v8/src/codegen/riscv64/
H A Dassembler-riscv64.h662 static int32_t GenZimm(VSew vsew, Vlmul vlmul, TailAgnosticType tail = tu, in GenZimm()
664 return (mask << 7) | (tail << 6) | ((vsew & 0x7) << 3) | (vlmul & 0x7); in GenZimm()
1475 TailAgnosticType tail = tu, MaskAgnosticType mask = mu);
1478 TailAgnosticType tail = tu, MaskAgnosticType mask = mu);
1481 TailAgnosticType tail = tu, in vsetvlmax()
1486 inline void vsetvl(VSew vsew, Vlmul vlmul, TailAgnosticType tail = tu, in vsetvl()
/third_party/skia/src/gpu/geometry/
H A DGrTriangulator.cpp39 static void list_insert(T* t, T* prev, T* next, T** head, T** tail) { in list_insert() argument
49 } else if (tail) { in list_insert()
50 *tail = t; in list_insert()
55 static void list_remove(T* t, T** head, T** tail) { in list_remove() argument
63 } else if (tail) { in list_remove()
64 *tail = t->*Prev; in list_remove()
/third_party/skia/third_party/externals/libpng/contrib/tools/
H A Dpngfix.c658 IDAT_list_extend(struct IDAT_list *tail) in IDAT_list_extend() argument
661 struct IDAT_list *next = tail->next; in IDAT_list_extend()
668 unsigned int length = 2 * tail->length; in IDAT_list_extend()
670 if (length < tail->length) /* arithmetic overflow */ in IDAT_list_extend()
671 length = tail->length; in IDAT_list_extend()
682 tail->next = next; in IDAT_list_extend()
1807 /* Initialize the tail to the pre-allocated buffer and set the count to 0 in IDAT_init()
2772 * instead this code relies on the compiler to do tail call elimination. The
3318 /* The signature has been written, the tail call to read_callback in read_callback()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/radius/
H A Dradius_server.c2193 struct radius_client *clients, *tail, *entry; in radius_server_read_clients() local
2213 clients = tail = NULL; in radius_server_read_clients()
2320 if (tail == NULL) { in radius_server_read_clients()
2321 clients = tail = entry; in radius_server_read_clients()
2323 tail->next = entry; in radius_server_read_clients()
2324 tail = entry; in radius_server_read_clients()

Completed in 46 milliseconds

1...<<21222324252627282930