Home
last modified time | relevance | path

Searched refs:start (Results 2226 - 2250 of 7883) sorted by relevance

1...<<81828384858687888990>>...316

/third_party/mesa3d/src/amd/common/
H A Dac_nir_lower_esgs_io_to_mem.c91 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 Dbpf_helpers.h302 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 Damalgamate.py109 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 Dcso_hash.c231 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 Drogue_regalloc.c128 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 Dbrw_cfg.h95 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 Dfunction-compiler.cc82 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 Dioctl.c251 * 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 Dpthread_create.c185 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 Dpthread_create.c185 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 Dpbo.c73 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 Dintel_sanitize_gpu.c155 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 Damdgpu_stress.c189 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 Dgraph-reducer.cc158 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 Dthreaded-list.h19 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 Dplatform-cygwin.cc222 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 Dscavenger.h224 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 Djson-parser.h40 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 Du_debug.c255 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 Dpb_cache.c68 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 Du_debug_flush.c93 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 Ddraw_pt_fetch_shade_emit.c189 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 De_os.h325 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 Dpem_info.c93 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 DQrSegmentAdvanced.java201 int start = 0; in splitIntoSegments()
205 String s = new String(codePoints, start, i - start); in splitIntoSegments()
219 start = i; in splitIntoSegments()

Completed in 17 milliseconds

1...<<81828384858687888990>>...316