/third_party/mesa3d/src/amd/common/ |
H A D | ac_nir_lower_esgs_io_to_mem.c | 91 int start, count; in emit_split_buffer_store() local 92 u_bit_scan_consecutive_range(&writemask, &start, &count); in emit_split_buffer_store() 93 assert(start >= 0 && count >= 0); in emit_split_buffer_store() 96 unsigned start_byte = start * bit_size / 8u; in emit_split_buffer_store()
|
/third_party/libbpf/src/ |
H A D | bpf_helpers.h | 302 extern int bpf_iter_num_new(struct bpf_iter_num *it, int start, int end) __weak __ksym; 350 /* bpf_for(i, start, end) implements a for()-like looping construct that sets 351 * provided integer variable *i* to values starting from *start* through, 353 * to range [start, end), so this can be used for accessing arrays without 356 * Note: *start* and *end* are assumed to be expressions with no side effects 363 #define bpf_for(i, start, end) for ( \ 369 bpf_iter_num_new(&___it, (start), (end)), \ 377 (___t && ((i) = *___t, (i) >= (start) && (i) < (end))); \
|
/third_party/json/tools/amalgamate/ |
H A D | amalgamate.py | 109 if match.start() > m.start() and \ 201 tmp_content += self.content[prev_end:pragma_match.start()] 237 tmp_content += self.content[prev_end:include_match.start()]
|
/third_party/mesa3d/src/gallium/auxiliary/cso_cache/ |
H A D | cso_hash.c | 231 int start; in cso_hash_data_next() local 243 start = (node->key % a.d->numBuckets) + 1; in cso_hash_data_next() 244 bucket = a.d->buckets + start; in cso_hash_data_next() 245 n = a.d->numBuckets - start; in cso_hash_data_next()
|
/third_party/mesa3d/src/imagination/rogue/ |
H A D | rogue_regalloc.c | 128 size_t start; member 174 range->start = ip; in rogue_ra_alloc() 230 if (!(range_first->start >= range_second->end || in rogue_ra_alloc() 231 range_second->start >= range_first->end)) { in rogue_ra_alloc()
|
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_cfg.h | 95 backend_instruction *start(); 96 const backend_instruction *start() const; 235 bblock_t::start() in start() function in bblock_t 241 bblock_t::start() const in start() function in bblock_t
|
/third_party/node/deps/v8/src/wasm/ |
H A D | function-compiler.cc | 82 if (func_body.end - func_body.start >= 100 * KB) { in ExecuteFunctionCompilation() 86 static_cast<int>(func_body.end - func_body.start)); in ExecuteFunctionCompilation() 158 wire_bytes.start() + function->code.offset(), in CompileWasmFunction() 159 wire_bytes.start() + function->code.end_offset()}; in CompileWasmFunction()
|
/third_party/ntfs-3g/libntfs-3g/ |
H A D | ioctl.c | 251 * Free blocks between 'start' and 'start+len-1' (both byte offsets) 258 u64 start = range->start; in fstrim() local 266 ntfs_log_debug("fstrim: start=%llu len=%llu minlen=%llu\n", in fstrim() 267 (unsigned long long) start, in fstrim() 276 if (start != 0 || len != (uint64_t)-1) { in fstrim() 277 ntfs_log_error("fstrim: setting start or length is not supported\n"); in fstrim()
|
/third_party/musl/porting/liteos_a/user/src/thread/ |
H A D | pthread_create.c | 185 static int start(void *p) in start() function 196 int (*start)(void*) = (int(*)(void*)) args->start_func; in start_c11() 197 __pthread_exit((void *)(uintptr_t)start(args->start_arg)); in start_c11() 341 ret = __thread_clone((c11 ? start_c11 : start), flags, new, stack); in __pthread_create()
|
/third_party/musl/src/thread/liteos_a/ |
H A D | pthread_create.c | 185 static int start(void *p) in start() function 196 int (*start)(void*) = (int(*)(void*)) args->start_func; in start_c11() 197 __pthread_exit((void *)(uintptr_t)start(args->start_arg)); in start_c11() 341 ret = __thread_clone((c11 ? start_c11 : start), flags, new, stack); in __pthread_create()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | pbo.c | 73 uintptr_t start, end, offset, size; in _mesa_validate_pbo_access() local 112 start = _mesa_image_offset(dimensions, pack, width, height, in _mesa_validate_pbo_access() 119 start += offset; in _mesa_validate_pbo_access() 122 if (start > size) { in _mesa_validate_pbo_access() 143 * \return NULL if error, else pointer to start of data 297 * \return NULL if error, else pointer to start of data
|
/third_party/mesa3d/src/intel/tools/ |
H A D | intel_sanitize_gpu.c | 155 fill_noise_buffer(uint8_t *dst, uint8_t start, uint32_t length) in fill_noise_buffer() argument 158 dst[i] = start; in fill_noise_buffer() 159 start = next_noise_value(start); in fill_noise_buffer()
|
/third_party/libdrm/tests/amdgpu/ |
H A D | amdgpu_stress.c | 189 struct timespec start, stop; in submit_ib() local 238 r = clock_gettime(CLOCK_MONOTONIC, &start); in submit_ib() 274 delta -= start.tv_nsec + start.tv_sec * 1000000000UL; in submit_ib()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | graph-reducer.cc | 158 int start = entry.input_index < node_inputs.count() ? entry.input_index : 0; in ReduceTop() local 159 for (int i = start; i < node_inputs.count(); ++i) { in ReduceTop() 166 for (int i = 0; i < start; ++i) { in ReduceTop() 218 if (node == graph()->start()) graph()->SetStart(replacement); in Replace()
|
/third_party/node/deps/v8/src/base/ |
H A D | threaded-list.h | 19 static T** start(T** t) { return t; } in start() function 20 static T* const* start(T* const* t) { return t; } in start() function 215 Iterator begin() { return Iterator(TLTraits::start(&head_)); } in begin() 218 ConstIterator begin() const { return ConstIterator(TLTraits::start(&head_)); } in begin()
|
/third_party/node/deps/v8/src/base/platform/ |
H A D | platform-cygwin.cc | 222 uintptr_t start, end; in GetSharedLibraryAddresses() local 225 if (fscanf(fp, "%" V8PRIxPTR "-%" V8PRIxPTR, &start, &end) != 2) break; in GetSharedLibraryAddresses() 251 "%08" V8PRIxPTR "-%08" V8PRIxPTR, start, end); in GetSharedLibraryAddresses() 253 result.push_back(SharedLibraryAddress(lib_name, start, end)); in GetSharedLibraryAddresses()
|
/third_party/node/deps/v8/src/heap/ |
H A D | scavenger.h | 224 FullObjectSlot start, FullObjectSlot end) final; 236 V8_INLINE void VisitPointers(HeapObject host, ObjectSlot start, 239 V8_INLINE void VisitPointers(HeapObject host, MaybeObjectSlot start, 253 V8_INLINE void VisitPointersImpl(HeapObject host, TSlot start, TSlot end);
|
/third_party/node/deps/v8/src/json/ |
H A D | json-parser.h | 40 JsonString(int start, int length, bool needs_conversion, in JsonString() argument 42 : start_(start), in JsonString() 65 int start() const { in start() function in v8::internal::final 277 void DecodeString(SinkChar* sink, int start, int length);
|
/third_party/mesa3d/src/util/ |
H A D | u_debug.c | 255 const char *start = str; in str_has_option() local 258 /* 'start' is the beginning of the currently-parsed word, in str_has_option() 261 * we compare 'start' up to 'str-1' with 'name'. */ in str_has_option() 265 if (str-start == name_len && in str_has_option() 266 !memcmp(start, name, name_len)) { in str_has_option() 274 start = str+1; in str_has_option()
|
/third_party/mesa3d/src/gallium/auxiliary/pipebuffer/ |
H A D | pb_cache.c | 68 if (!os_time_timeout(entry->start, entry->end, current_time)) in release_expired_buffers_locked() 105 entry->start = os_time_get(); in pb_cache_add_buffer() 106 entry->end = entry->start + mgr->usecs; in pb_cache_add_buffer() 174 else if (os_time_timeout(cur_entry->start, cur_entry->end, now)) in pb_cache_reclaim_buffer()
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_debug_flush.c | 93 debug_flush_capture_frame(int start, int depth) in debug_flush_capture_frame() argument 101 debug_backtrace_capture(frames, start, depth); in debug_flush_capture_frame() 184 unsigned start, unsigned depth, in debug_flush_alert() 190 frame = debug_flush_capture_frame(start, depth); in debug_flush_alert() 183 debug_flush_alert(const char *s, const char *op, unsigned start, unsigned depth, boolean continued, boolean capture, const struct debug_stack_frame *frame) debug_flush_alert() argument
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_pt_fetch_shade_emit.c | 189 unsigned start, in fse_run_linear() 214 fse->active->run_linear(fse->active, start, count, hw_verts); in fse_run_linear() 299 unsigned start, in fse_run_linear_elts() 326 fse->active->run_linear(fse->active, start, count, hw_verts); in fse_run_linear_elts() 188 fse_run_linear(struct draw_pt_middle_end *middle, unsigned start, unsigned count, unsigned prim_flags) fse_run_linear() argument 298 fse_run_linear_elts(struct draw_pt_middle_end *middle, unsigned start, unsigned count, const ushort *draw_elts, unsigned draw_count, unsigned prim_flags) fse_run_linear_elts() argument
|
/third_party/node/deps/openssl/openssl/ |
H A D | e_os.h | 325 struct timeval start, now; in ossl_sleep() local 328 gettimeofday(&start, NULL); in ossl_sleep() 331 elapsedms = (((now.tv_sec - start.tv_sec) * 1000000) in ossl_sleep() 332 + now.tv_usec - start.tv_usec) / 1000; in ossl_sleep()
|
/third_party/node/deps/openssl/openssl/crypto/pem/ |
H A D | pem_info.c | 93 start: in STACK_OF() 102 goto start; in STACK_OF() 119 goto start; in STACK_OF() 128 goto start; in STACK_OF()
|
/third_party/qrcodegen/java/src/main/java/io/nayuki/qrcodegen/ |
H A D | QrSegmentAdvanced.java | 201 int start = 0; in splitIntoSegments() 205 String s = new String(codePoints, start, i - start); in splitIntoSegments() 219 start = i; in splitIntoSegments()
|