/third_party/node/lib/ |
H A D | _http_agent.js | 357 const index = StringPrototypeIndexOf(hostHeader, ']'); 358 if (index === -1) { 362 servername = StringPrototypeSubstr(hostHeader, 1, index - 1); 437 const index = ArrayPrototypeIndexOf(sockets[name], s); 438 if (index !== -1) { 439 ArrayPrototypeSplice(sockets[name], index, 1);
|
/third_party/node/lib/internal/ |
H A D | async_hooks.js | 14 * Environment::AsyncHooks::fields_[]. Each index tracks the number of active 18 * Environment::AsyncHooks::async_id_fields_[]. Each index contains the ids for 117 const index = async_hook_fields[kStackLength] - 1; 118 execution_async_resources[index] = resource; 146 const index = async_hook_fields[kStackLength] - 1; 147 if (index === -1) return topLevelResource; 148 const resource = execution_async_resources[index] || 149 executionAsyncResource_(index);
|
/third_party/node/deps/icu-small/source/common/ |
H A D | ubidiimp.h | 126 ubidi_getParaLevelAtIndex(const UBiDi *pBiDi, int32_t index); 128 #define GET_PARALEVEL(ubidi, index) \ 129 ((UBiDiLevel)(!(ubidi)->defaultParaLevel || (index)<(ubidi)->paras[0].limit ? \ 130 (ubidi)->paraLevel : ubidi_getParaLevelAtIndex((ubidi), (index)))) 171 uint16_t start; /* index of first opening entry for this run */ 172 uint16_t limit; /* index after last opening entry for this run */ 185 int32_t isoRunLast; /* index of last used entry */ 187 + 1 for index 0, + 1 for before the first isolated sequence */ 209 #define MAKE_INDEX_ODD_PAIR(index, level) ((index)|((int32_ [all...] |
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_draw.c | 138 /* Get index bounds for user buffers. */ in prepare_indexed_draw() 151 * increment for the index buffer refcount when adding it into in prepare_indexed_draw() 154 info->index.resource = in prepare_indexed_draw() 155 _mesa_get_bufferobj_reference(ctx, info->index.gl_bo); in prepare_indexed_draw() 158 info->index.resource = info->index.gl_bo->buffer; in prepare_indexed_draw() 164 if (unlikely(!info->index.resource)) in prepare_indexed_draw() 267 info.index.resource = bufobj->buffer; in st_indirect_draw_vbo()
|
/third_party/libevdev/doc/html/search/ |
H A D | search.js | 280 // set item with index id as the active item 546 // return the first item with index index or higher that is visible 547 this.NavNext = function(index) 552 var focusName = 'Item'+index; 563 index++; 568 this.NavPrev = function(index) 573 var focusName = 'Item'+index; 584 index--;
|
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | instructions-arm64.cc | 352 void NEONFormatDecoder::SetFormatMap(unsigned index, in SetFormatMap() argument 354 DCHECK_LT(index, arraysize(formats_)); in SetFormatMap() 356 formats_[index] = format; in SetFormatMap() 397 const char* NEONFormatDecoder::GetSubstitute(int index, SubstitutionMode mode) { in GetSubstitute() argument 399 return NEONFormatAsString(GetNEONFormat(formats_[index])); in GetSubstitute() 402 return NEONFormatAsPlaceholder(GetNEONFormat(formats_[index])); in GetSubstitute()
|
/third_party/node/deps/v8/src/debug/wasm/gdb-server/ |
H A D | target.cc | 524 // IN : $qWasmGlobal:frame_index;index in ProcessQueryPacket() 530 uint32_t index = in ProcessQueryPacket() local 534 if (gdb_server_->GetWasmGlobal(frame_index, index, buff, 16, &size)) { in ProcessQueryPacket() 545 // IN : $qWasmLocal:frame_index;index in ProcessQueryPacket() 551 uint32_t index = in ProcessQueryPacket() local 555 if (gdb_server_->GetWasmLocal(frame_index, index, buff, 16, &size)) { in ProcessQueryPacket() 565 // Get a Wasm local from the operand stack at the index specified. in ProcessQueryPacket() 566 // IN : qWasmStackValue:frame_index;index in ProcessQueryPacket() 572 uint32_t index = in ProcessQueryPacket() local 576 if (gdb_server_->GetWasmStackValue(frame_index, index, buf in ProcessQueryPacket() [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | hash-table.h | 188 // Returns the index for an entry (of the key) 193 // Returns the entry for an index (of the key) 194 static constexpr inline InternalIndex IndexToEntry(int index) { in IndexToEntry() argument 195 return InternalIndex((index - kElementsStartIndex) / kEntrySize); in IndexToEntry() 198 // Returns the index for a slot address in the object. 245 inline void set_key(int index, Object value); 246 inline void set_key(int index, Object value, WriteBarrierMode mode); 356 // Returns the index to the value of an entry. 410 inline void set_key(int index, Object value); 411 inline void set_key(int index, Objec [all...] |
H A D | dictionary-inl.h | 85 void BaseNameDictionary<Derived, Shape>::set_next_enumeration_index(int index) { in set_next_enumeration_index() argument 86 DCHECK_LT(0, index); in set_next_enumeration_index() 87 this->set(kNextEnumerationIndexIndex, Smi::FromInt(index)); in set_next_enumeration_index() 160 int index = DerivedHashTable::EntryToIndex(entry); in SetEntry() local 163 this->set(index + Derived::kEntryKeyIndex, key, mode); in SetEntry() 164 this->set(index + Derived::kEntryValueIndex, value, mode); in SetEntry()
|
H A D | shared-function-info.h | 82 inline byte get(int index) const; 83 inline void set(int index, byte value); 84 inline void copy_in(int index, const byte* buffer, int length); 86 inline PreparseData get_child(int index) const; 87 inline void set_child(int index, PreparseData value, 111 inline Object get_child_raw(int index) const; 500 // Defines the index in a native context of closure's map instantiated using
|
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-compiler.h | 83 Position* positions(int index) { in positions() argument 84 DCHECK_LE(0, index); in positions() 85 DCHECK_GT(characters_, index); in positions() 86 return positions_ + index; in positions() 116 // our example this is from index 1 to 2 (0 is not constrained). We can now 416 int index = (character & RegExpMacroAssembler::kTableMask); in CountCharacter() local 417 frequencies_[index].Increment(); in CountCharacter()
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_gather.c | 65 LLVMValueRef index = lp_build_const_int32(gallivm, i); in lp_build_gather_elem_ptr() local 66 offset = LLVMBuildExtractElement(gallivm->builder, offsets, index, ""); in lp_build_gather_elem_ptr() 543 LLVMValueRef index = lp_build_const_int32(gallivm, i); in lp_build_gather() local 549 res = LLVMBuildInsertElement(gallivm->builder, res, elems[i], index, ""); in lp_build_gather() 596 LLVMValueRef index = lp_build_const_int32(gallivm, i); in lp_build_gather_values() local 597 vec = LLVMBuildInsertElement(builder, vec, values[i], index, ""); in lp_build_gather_values()
|
/third_party/mesa3d/src/gallium/tools/trace/ |
H A D | parse.py | 86 self.index = 0 126 while self.index >= len(self.tokens) and not self.final: 128 self.index = 0 140 if self.index >= len(self.tokens): 144 token = self.tokens[self.index] 145 self.index += 1
|
/third_party/mesa3d/src/panfrost/midgard/ |
H A D | compiler.h | 462 return (ssa->index << 1) | 0; in nir_ssa_index() 472 return (src->reg.reg->index << 1) | PAN_IS_REG; in nir_src_index() 480 return (dst->ssa.index << 1) | 0; in nir_dest_index() 483 return (dst->reg.reg->index << 1) | PAN_IS_REG; in nir_dest_index() 564 unsigned index, in v_load_store_scratch() 568 /* We index by 32-bit vec4s */ in v_load_store_scratch() 569 unsigned byte = (index * 4 * 4); in v_load_store_scratch() 562 v_load_store_scratch( unsigned srcdest, unsigned index, bool is_store, unsigned mask) v_load_store_scratch() argument
|
/third_party/node/deps/undici/src/lib/fetch/ |
H A D | util.js | 827 index: 0, 851 // 6. Let index be object’s index. 854 const { index, kind, target } = object 860 // 10. If index is greater than or equal to len, then return 862 if (index >= len) { 866 // 11. Let pair be the entry in values at index index. 867 const pair = values[index] 869 // 12. Set object’s index t [all...] |
/third_party/node/deps/uv/src/win/ |
H A D | poll.c | 238 int index, i; in uv__fast_poll_get_peer_socket() local 241 index = -1; in uv__fast_poll_get_peer_socket() 246 index = i; in uv__fast_poll_get_peer_socket() 251 if (index < 0) { in uv__fast_poll_get_peer_socket() 257 peer_socket = loop->poll_peer_sockets[index]; in uv__fast_poll_get_peer_socket() 260 loop->poll_peer_sockets[index] = peer_socket; in uv__fast_poll_get_peer_socket()
|
/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/ |
H A D | AbstractMessageTest.java | 89 Descriptors.FieldDescriptor field, int index) { in getRepeatedField() 90 return wrappedMessage.getRepeatedField(field, index); in getRepeatedField() 152 Descriptors.FieldDescriptor field, int index) { in getRepeatedField() 153 return wrappedBuilder.getRepeatedField(field, index); in getRepeatedField() 156 int index, Object value) { in setRepeatedField() 157 wrappedBuilder.setRepeatedField(field, index, value); in setRepeatedField() 88 getRepeatedField( Descriptors.FieldDescriptor field, int index) getRepeatedField() argument 151 getRepeatedField( Descriptors.FieldDescriptor field, int index) getRepeatedField() argument 155 setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value) setRepeatedField() argument
|
/third_party/pulseaudio/src/tests/ |
H A D | resampler-rewind-test.c | 127 a += chunk_a->index / pa_frame_size(ss); in compare_blocks() 128 b += chunk_b->index / pa_frame_size(ss); in compare_blocks() 342 in_chunk.index = 0; in main() 368 silence_chunk.index = 0; in main() 392 in_chunk.index = old_length - in_chunk.length; in main() 417 out_chunk.index = old_length - out_chunk.length; in main()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/ |
H A D | vktRayTracingPositionFetchTests.cpp | 302 for (deUint32 index = 0; index < numRays; index++) { in iterate() 313 for (deUint32 index = 0; index < numRays; index++) { in iterate()
|
/third_party/skia/third_party/externals/angle2/src/compiler/preprocessor/ |
H A D | MacroExpander.cpp | 226 ASSERT(context->replacements[context->index] == token); in ungetToken() 486 // The param index can be cached with the replacement token. in replaceMacroParams() 509 MacroExpander::MacroContext::MacroContext() : macro(0), index(0) {} in MacroContext() 515 return index == replacements.size(); in empty() 520 return replacements[index++]; in get() 525 ASSERT(index > 0); in unget() 526 --index; in unget()
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcGLSLVectorConstructorTests.cpp | 289 void generateValueFloat(ostringstream& out, const size_t index) in generateValueFloat() argument 291 out << index << ".0"; in generateValueFloat() local 294 void generateValueInt(ostringstream& out, const size_t index) in generateValueInt() argument 296 out << index; in generateValueInt() local 299 void generateValueBool(ostringstream& out, const size_t index) in generateValueBool() argument 301 out << ((index != 0) ? "true" : "false"); in generateValueBool()
|
/third_party/skia/samplecode/ |
H A D | Sample3D.cpp | 268 SkCanvas* canvas, SkColor, int index, bool drawFront, const SkM44& localToWorld) = 0; 281 int index = 0; local 294 this->drawContent(canvas, f.fColor, index++, drawFront, localToWorld); 414 int index, 466 SkCanvas* canvas, SkColor color, int index, bool drawFront, const SkM44&) override { 475 fAnim[index]->render(canvas, &r);
|
/third_party/skia/src/core/ |
H A D | SkZip.h | 34 constexpr Iterator(const SkZip* zip, size_t index) : fZip{zip}, fIndex{index} { } in Iterator() argument 74 constexpr ReturnTuple operator[](size_t i) const { return this->index(i);} in operator []() 77 constexpr ReturnTuple front() const { return this->index(0); } in front() 78 constexpr ReturnTuple back() const { return this->index(this->size() - 1); } in back() 107 constexpr ReturnTuple index(size_t i) const { in index() function in SkZip
|
/third_party/skia/src/gpu/ |
H A D | GrFragmentProcessor.h | 209 GrFragmentProcessor* childProcessor(int index) { return fChildProcessors[index].get(); } in childProcessor() argument 210 const GrFragmentProcessor* childProcessor(int index) const { in childProcessor() 211 return fChildProcessors[index].get(); in childProcessor() 542 ProgramImpl* childProcessor(int index) const { return fChildProcessors[index].get(); } in childProcessor()
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | OutputASM.h | 276 void emitCmp(sw::Shader::Control cmpOp, TIntermTyped *dst, TIntermNode *left, TIntermNode *right, int index = 0); 278 void source(sw::Shader::SourceParameter ¶meter, TIntermNode *argument, int index = 0); 279 void destination(sw::Shader::DestinationParameter ¶meter, TIntermTyped *argument, int index = 0); 288 int writeMask(TIntermTyped *destination, int index = 0); 333 TIntermSymbol *index = nullptr; member 366 ArgumentInfo getArgumentInfo(TIntermTyped *argument, int index);
|