/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_ra_validate.c | 39 * - Values at the start get "undef", which acts like a special SSA value that 515 struct reaching_state *start = &ctx->block_reaching[0]; in check_reaching_defs() local 517 start->full.regs[i].def = UNDEF; in check_reaching_defs() 519 start->half.regs[i].def = UNDEF; in check_reaching_defs() 521 start->shared.regs[i].def = UNDEF; in check_reaching_defs()
|
/third_party/mesa3d/src/freedreno/vulkan/ |
H A D | tu_cs.h | 76 uint32_t *start; member 118 uint32_t *start, uint32_t *end); 188 return cs->cur - cs->start; in tu_cs_get_size() 229 assert(cs->start <= cs->cur); in tu_cs_sanity_check()
|
/third_party/libwebsockets/lib/system/dhcpclient/ |
H A D | dhcpc4.c | 78 lws_dhcpc4_prep(uint8_t *start, unsigned int bufsiz, lws_dhcpc_req_t *r, int op) in lws_dhcpc4_prep() argument 80 uint8_t *p = start; in lws_dhcpc4_prep() 82 memset(start, 0, bufsiz); in lws_dhcpc4_prep() 102 *p++ = 0x63; /* RFC2132 Magic Cookie indicates start of options */ in lws_dhcpc4_prep() 137 return lws_ptr_diff(p, start); in lws_dhcpc4_prep()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_virtualvalues.h | 136 LiveRange(): start(-1), end(-1), is_pinned(false) {} in LiveRange() 137 LiveRange(int s, int e): start(s), end(e), is_pinned(false) {} in LiveRange() 138 int start; member 155 void pin_live_range(bool start, bool end = false);
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_valtable.cpp | 441 unsigned sb_bitset::find_bit(unsigned start) { 442 assert(start < bit_size); 443 unsigned w = start / bt_bits; 444 unsigned b = start % bt_bits;
|
/third_party/node/lib/internal/test_runner/ |
H A D | coverage.js | 308 let start = 0; 312 while (start <= end) { 313 mid = MathFloor((start + end) / 2); 337 start = mid + 1; 383 // part of the check filters out core modules, which start with 'node:' in
|
/third_party/node/test/parallel/ |
H A D | test-whatwg-webstreams-transfer.js | 56 // 1. We start with ReadableStream R1, 83 start: common.mustCall((controller) => { 129 start: common.mustCall((controller) => { 173 // We start with WritableStream W1, which is transferred to port1. 224 // We start with TransformStream T1, which creates ReadableStream R1, 308 start(c) { controller = c; }, 472 start(controller) {
|
/third_party/node/deps/v8/third_party/zlib/ |
H A D | gzlib.c | 258 state->start = LSEEK(state->fd, 0, SEEK_CUR); 259 if (state->start == -1) state->start = 0; 358 /* back up and start over */ 359 if (LSEEK(state->fd, state->start, SEEK_SET) == -1) 386 /* can only seek from start or relative to current position */ 418 if (offset < 0) /* before start of file! */
|
/third_party/node/deps/zlib/ |
H A D | gzlib.c | 251 state->start = LSEEK(state->fd, 0, SEEK_CUR); in gz_open() 252 if (state->start == -1) state->start = 0; in gz_open() 334 /* back up and start over */ in gzrewind() 335 if (LSEEK(state->fd, state->start, SEEK_SET) == -1) in gzrewind() 358 /* can only seek from start or relative to current position */ in gzseek64() 390 if (offset < 0) /* before start of file! */ in gzseek64()
|
/third_party/musl/src/thread/ |
H A D | pthread_create.c | 203 static int start(void *p) in start() function 223 int (*start)(void*) = (int(*)(void*)) args->start_func; in start_c11() 224 __pthread_exit((void *)(uintptr_t)start(args->start_arg)); in start_c11() 364 ret = __clone((c11 ? start_c11 : start), stack, flags, args, &new->tid, TP_ADJ(new), &__thread_list_lock); in __pthread_create()
|
/third_party/musl/src/thread/linux/ |
H A D | pthread_create.c | 359 static int start(void *p) in start() function 394 int (*start)(void*) = (int(*)(void*)) args->start_func; in start_c11() 395 __pthread_exit((void *)(uintptr_t)start(args->start_arg)); in start_c11() 550 ret = __clone((c11 ? start_c11 : start), stack, flags, args, &new->tid, TP_ADJ(new), &__thread_list_lock); in __pthread_create()
|
/third_party/musl/porting/linux/user/src/thread/ |
H A D | pthread_create.c | 295 static int start(void *p) in start() function 330 int (*start)(void*) = (int(*)(void*)) args->start_func; in start_c11() 331 __pthread_exit((void *)(uintptr_t)start(args->start_arg)); in start_c11() 486 ret = __clone((c11 ? start_c11 : start), stack, flags, args, &new->tid, TP_ADJ(new), &__thread_list_lock); in __pthread_create()
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | collationdatawriter.cpp | 112 // For any data item, we need to write the start and limit offsets, in write() 113 // so the indexes length must be at least index-of-start-offset + 2. in write() 129 // so that we start with an 8-aligned offset. in write() 222 // Byte offsets of data items all start from the start of the indexes. in write() 343 int32_t start = indexes[startIndex]; in copyData() local 345 if(start < limit) { in copyData() 346 uprv_memcpy(dest + start, src, limit - start); in copyData()
|
H A D | units_data.cpp | 243 int32_t start = 0; in binarySearch() local 248 while (start < end) { in binarySearch() 249 int32_t mid = (start + end) / 2; in binarySearch() 252 start = mid + 1; in binarySearch()
|
H A D | datefmt.cpp | 333 int32_t start = pos.getIndex(); in parse() local 336 if (pos.getIndex() != start) { in parse() 342 // was illegal so we set the error index to the start. in parse() 343 pos.setIndex(start); in parse() 344 pos.setErrorIndex(start); in parse()
|
/third_party/node/deps/icu-small/source/tools/genrb/ |
H A D | wrtjava.cpp | 509 static UBool start = true; variable 522 if(start==false){ in table_write_java() 527 start = false; in table_write_java() 630 start = true; /* Reset the start indicator*/ in bundle_write_java()
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | regex.h | 615 int32_t fStartType; // Info on how a match must start. 792 * If the match succeeds then more information can be obtained via the start(), 796 * @return true if there is a match at the start of the input string. 807 * If the match succeeds then more information can be obtained via the start(), 821 * the previous match, or at the start of the string if there is no previous match. 822 * If a match is found, `start()`, `end()` and `group()` 836 * the previous match, or at the start of the string if there is no previous match. 837 * If a match is found, `start()`, `end()` and `group()` 853 * @param start The (native) index in the input string to begin the search. 858 virtual UBool find(int64_t start, UErrorCod [all...] |
/third_party/mesa3d/src/panfrost/bifrost/valhall/ |
H A D | asm.py | 208 encoded |= ((sr.encoded_flags | base) << sr.start) 301 encoded |= encoded_src << src.start 328 encoded |= (val << imm.start) 368 encoded |= (value << mod.start)
|
/third_party/icu/icu4c/source/tools/genrb/ |
H A D | wrtjava.cpp | 509 static UBool start = true; variable 522 if(start==false){ in table_write_java() 527 start = false; in table_write_java() 630 start = true; /* Reset the start indicator*/ in bundle_write_java()
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | gzlib.c | 184 state->start = LSEEK(state->fd, 0, SEEK_CUR);
185 if (state->start == -1) state->start = 0;
267 /* back up and start over */
268 if (LSEEK(state->fd, state->start, SEEK_SET) == -1)
295 /* can only seek from start or relative to current position */
326 if (offset < 0) /* before start of file! */
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-array-iterator.cc | 274 uint8_t* start = in UpdatePointers() local 276 if (start != start_) { in UpdatePointers() 277 start_ = start; in UpdatePointers() 278 uint8_t* end = start + bytecode_array_->length(); in UpdatePointers()
|
/third_party/node/deps/v8/src/torque/ls/ |
H A D | message-handler.cc | 141 range.start().set_line(position.start.line); in PopulateRangeFromSourcePosition() 142 range.start().set_character(position.start.column); in PopulateRangeFromSourcePosition()
|
/third_party/mesa3d/src/gallium/drivers/lima/ |
H A D | lima_state.c | 325 enum pipe_shader_type shader, unsigned start, in lima_sampler_states_bind() 333 assert(start == 0); in lima_sampler_states_bind() 387 unsigned start, unsigned nr, in lima_set_sampler_views() 397 assert(start == 0); in lima_set_sampler_views() 324 lima_sampler_states_bind(struct pipe_context *pctx, enum pipe_shader_type shader, unsigned start, unsigned nr, void **hwcso) lima_sampler_states_bind() argument 385 lima_set_sampler_views(struct pipe_context *pctx, enum pipe_shader_type shader, unsigned start, unsigned nr, unsigned unbind_num_trailing_slots, bool take_ownership, struct pipe_sampler_view **views) lima_set_sampler_views() argument
|
/third_party/mesa3d/src/gallium/auxiliary/pipebuffer/ |
H A D | pb_bufmgr_slab.c | 68 /** Offset relative to the start of the slab buffer. */ 69 pb_size start; member 234 return (void *) ((uint8_t *) buf->slab->virtual + buf->start); in pb_slab_buffer_map() 273 *offset += buf->start; in pb_slab_buffer_get_base_buffer() 346 buf->start = i* mgr->bufSize; in pb_slab_create()
|
/third_party/node/deps/openssl/openssl/crypto/bio/ |
H A D | bf_buff.c | 101 start: in buffer_read() 155 goto start; in buffer_read() 170 start: in buffer_write() 232 goto start; in buffer_write()
|