Home
last modified time | relevance | path

Searched refs:start (Results 2151 - 2175 of 5857) sorted by relevance

1...<<81828384858687888990>>...235

/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()
/third_party/rust/crates/clang-sys/src/
H A Dsupport.rs209 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 DQrSegmentAdvanced.java193 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 Dproto.vim72 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 Dconv.py237 start = int(mo.group(1))
238 assert start in self.number2symbol, (lineno, line)
239 self.start = start
/third_party/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/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
H A DVertexBuffer.cpp172 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
/third_party/skia/src/core/
H A DSkDeque.cpp14 char* fBegin; // start of used section in this chunk
18 char* start() { return (char*)(this + 1); } in start() function
19 const char* start() const { return (const char*)(this + 1); } in start() function
86 if (begin < first->start()) { // no more room in this chunk in push_front()
122 last->fBegin = last->start(); in push_back()
284 // reset works by skipping through the spare blocks at the start (or end)
293 // initialize the iterator to start at the front in reset()
300 // initialize the iterator to start at the back in reset()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DVertexDataManager.cpp59 unsigned int VertexDataManager::writeAttributeData(StreamingVertexBuffer *vertexBuffer, GLint start, GLsizei count, const VertexAttribute &attribute) in writeAttributeData() argument
91 input += inputStride * start; in writeAttributeData()
112 GLenum VertexDataManager::prepareVertexData(GLint start, GLsizei count, TranslatedAttribute *translated, GLsizei instanceId) in prepareVertexData() argument
151 // Instanced vertices do not apply the 'start' offset in prepareVertexData()
152 GLint firstVertexIndex = isInstanced ? instanceId / attrib.mDivisor : start; in prepareVertexData()
/third_party/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/skia/third_party/externals/icu/source/samples/layout/
H A Dparagraph.cpp63 static void subsetFontRuns(const FontRuns *fontRuns, le_int32 start, le_int32 limit, FontRuns *sub) in subsetFontRuns() argument
65 le_int32 startRun = findRun(fontRuns, start); in subsetFontRuns()
72 le_int32 runLimit = fontRuns->getLimit(run) - start; in subsetFontRuns()
75 runLimit = limit - start; in subsetFontRuns()
H A Dpflow.c91 static void subsetFontRuns(const pl_fontRuns *fontRuns, le_int32 start, le_int32 limit, pl_fontRuns *sub) in subsetFontRuns() argument
93 le_int32 startRun = findFontRun(fontRuns, start); in subsetFontRuns()
101 le_int32 runLimit = pl_getFontRunLimit(fontRuns, run) - start; in subsetFontRuns()
104 runLimit = limit - start; in subsetFontRuns()
/third_party/skia/third_party/externals/dawn/src/tests/perf_tests/
H A DDawnPerfTest.cpp298 double start = std::numeric_limits<double>::max(); in OutputResults() member
333 tracker->start = std::min(tracker->start, traceEvent.timestamp); in OutputResults()
343 *totalTime += (tracker->end - tracker->start); in OutputResults()
/third_party/skia/third_party/externals/freetype/src/cache/
H A Dftcsbits.c238 FT_UInt count, start; in FT_LOCAL_DEF() local
241 start = gindex - ( gindex % FTC_SBIT_ITEMS_PER_NODE ); in FT_LOCAL_DEF()
242 count = total - start; in FT_LOCAL_DEF()
246 FTC_GNode_Init( FTC_GNODE( snode ), start, family ); in FT_LOCAL_DEF() local

Completed in 16 milliseconds

1...<<81828384858687888990>>...235