/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()
|
/third_party/rust/crates/clang-sys/src/ |
H A D | support.rs | 209 let start = output.find("version ")? + 8; in parse_version() 210 let mut numbers = output[start..].split_whitespace().next()?.split('.'); in parse_version() 226 let start = output.find("#include <...> search starts here:")? + 34; in parse_search_paths() 228 let paths = output[start..end].replace("(framework directory)", ""); in parse_search_paths()
|
/third_party/qrcodegen/java-fast/io/nayuki/fastqrcodegen/ |
H A D | QrSegmentAdvanced.java | 193 int start = 0; in splitIntoSegments() 197 String s = new String(codePoints, start, i - start); in splitIntoSegments() 211 start = i; in splitIntoSegments()
|
/third_party/protobuf/editors/ |
H A D | proto.vim | 72 syn region pbComment start="\/\*" end="\*\/" contains=@pbCommentGrp 73 syn region pbComment start="//" skip="\\$" end="$" keepend contains=@pbCommentGrp 74 syn region pbString start=/"/ skip=/\\./ end=/"/ 75 syn region pbString start=/'/ skip=/\\./ end=/'/
|
/third_party/python/Lib/lib2to3/pgen2/ |
H A D | conv.py | 237 start = int(mo.group(1)) 238 assert start in self.number2symbol, (lineno, line) 239 self.start = start
|
/third_party/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/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/ |
H A D | VertexBuffer.cpp | 172 GLint start, in storeDynamicAttribute() 202 start, adjustedCount, instances, mWritePosition, in storeDynamicAttribute() 289 GLint start, in storeStaticAttribute() 300 gl::VertexAttribType::InvalidEnum, start, count, in storeStaticAttribute() 167 storeDynamicAttribute( const gl::Context *context, const gl::VertexAttribute &attrib, const gl::VertexBinding &binding, gl::VertexAttribType currentValueType, GLint start, size_t count, GLsizei instances, GLuint baseInstance, unsigned int *outStreamOffset, const uint8_t *sourceData) storeDynamicAttribute() argument 286 storeStaticAttribute(const gl::Context *context, const gl::VertexAttribute &attrib, const gl::VertexBinding &binding, GLint start, GLsizei count, GLsizei instances, const uint8_t *sourceData) storeStaticAttribute() argument
|