Home
last modified time | relevance | path

Searched refs:index (Results 6601 - 6625 of 7694) sorted by relevance

1...<<261262263264265266267268269270>>...308

/third_party/node/lib/internal/streams/
H A Dreadable.js912 const index = ArrayPrototypeIndexOf(state.pipes, dest);
913 if (index === -1)
916 state.pipes.splice(index, 1);
/third_party/node/deps/v8/tools/
H A Dll_prof.py783 index = 1
785 name = "%s-%d" % (mmap_info.filename, index)
786 index += 1
/third_party/node/deps/googletest/include/gtest/internal/
H A Dgtest-internal.h699 // 'index' is the index of the test in the type list 'Types'
701 // Types). Valid values for 'index' are [0, N - 1] where N is the
704 const char* case_name, const char* test_names, int index, in Register()
715 "/" + type_names[static_cast<size_t>(index)]) in Register()
733 index + 1, in Register()
744 int /*index*/, in Register()
703 Register(const char* prefix, const CodeLocation& code_location, const char* case_name, const char* test_names, int index, const std::vector<std::string>& type_names = GenerateNames<DefaultNameGenerator, Types>()) Register() argument
/third_party/node/deps/icu-small/source/common/
H A Dutrie2_builder.cpp56 * (Especially the utrie2_enum() code that jumps to the special LSCP index-2
65 * assumes that a single index-2 block is used for 0x400 code points
68 * Requires UTRIE2_SHIFT_1<=16. Otherwise one single index-2 block contains
69 * more than one Unicode plane, and the split of the index-2 table into a BMP
81 /** The null index-2 block, following the gap in the index-2 table. */
84 /** The start of allocated index-2 blocks. */
175 /* set the index-2 indexes for the 2=0x80>>UTRIE2_SHIFT_2 ASCII data blocks */ in utrie2_open()
201 * set the remaining indexes in the BMP index-2 block in utrie2_open()
209 * Fill the index ga in utrie2_open()
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dcitrtest.cpp148 void CharIterTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ ) in runIndexedTest() argument
151 switch (index) { in runIndexedTest()
216 errln("Construction failed: index is invalid"); in TestConstructionAndEquality()
313 errln("Construction failed: index is invalid"); in TestConstructionAndEqualityUChariter()
775 // move both iter and s[index] in TestUCharIterator()
871 sIter.index=3; in TestUCharIterator()
879 errln("error: UCharIterator(string).getIndex returns wrong index"); in TestUCharIterator()
890 errln("error: UCharIterator(string).move sets/returns wrong index"); in TestUCharIterator()
901 errln("error: UCharIterator(character iterator).getIndex returns wrong index"); in TestUCharIterator()
912 errln("error: UCharIterator(character iterator).move sets/returns wrong index"); in TestUCharIterator()
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dtyped-optimization.cc168 Node* const index = NodeProperties::GetValueInput(node, 2); in ReduceMaybeGrowFastElements() local
173 Type const index_type = NodeProperties::GetType(index); in ReduceMaybeGrowFastElements()
183 index, length, effect, control); in ReduceMaybeGrowFastElements()
/third_party/node/deps/v8/src/objects/
H A Dsource-text-module.cc579 for (InternalIndex index : requested_exports->IterateEntries()) { in FetchStarExports()
581 if (!requested_exports->ToKey(roots, index, &key)) continue; in FetchStarExports()
587 Handle<Cell> cell(Cell::cast(requested_exports->ValueAt(index)), isolate); in FetchStarExports()
1023 // InnerModuleEvaluation(module, stack, index) in InnerModuleEvaluation()
1025 // a. If module.[[EvaluationError]] is undefined, return index. in InnerModuleEvaluation()
1045 // 6. Set module.[[DFSIndex]] to index. in InnerModuleEvaluation()
1048 // 7. Set module.[[DFSAncestorIndex]] to index. in InnerModuleEvaluation()
1057 // 10. Set index to index + 1. in InnerModuleEvaluation()
1139 // The spec returns the module index fo in InnerModuleEvaluation()
[all...]
/third_party/mesa3d/src/gallium/drivers/lima/
H A Dlima_job.c496 * 1D for pp stream index and 2D for plb block x/y on framebuffer. in lima_generate_pp_stream()
497 * if multi pp, interleave the 1D index to make each pp's render target in lima_generate_pp_stream()
501 int index = 0; in lima_generate_pp_stream() local
525 int pp = index % num_pp; in lima_generate_pp_stream()
535 index++; in lima_generate_pp_stream()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample_aos.c610 LLVMValueRef index; in lp_build_sample_fetch_image_linear() local
612 index = LLVMConstInt(elem_type, j + subindex, 0); in lp_build_sample_fetch_image_linear()
614 shuffles[j + i] = index; in lp_build_sample_fetch_image_linear()
/third_party/mesa3d/src/gallium/drivers/d3d12/
H A Dd3d12_nir_passes.c678 out->data.index = i; in d3d12_add_missing_dual_src_target()
760 nir_ssa_def *index = nir_imin(b, vertex_count, nir_imm_int(b, 2)); in lower_triangle_strip_store() local
766 nir_deref_instr *deref = nir_build_deref_array(b, nir_build_deref_var(b, varyings[var->data.location]), index); in lower_triangle_strip_store()
/third_party/mesa3d/src/gallium/drivers/r300/
H A Dr300_state_derived.c55 int index) in r300_draw_emit_attrib()
62 info->output_semantic_name[index], in r300_draw_emit_attrib()
63 info->output_semantic_index[index]); in r300_draw_emit_attrib()
119 DBG(r300, DBG_SWTCL, "draw_emit_attrib: WPOS, index: %i\n", in r300_draw_emit_all_attribs()
53 r300_draw_emit_attrib(struct r300_context* r300, enum attrib_emit emit, int index) r300_draw_emit_attrib() argument
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
H A DCodedInputStreamTest.cs928 private int index = 0; field in Google.Protobuf.CodedInputStreamTest.RepeatingMemoryStream
943 while (numBytesCopiedTotal < count && index < maxIterations) in Read()
954 index++; in Read()
/third_party/pulseaudio/src/modules/
H A Dmodule-solaris.c742 w = pa_write(u->fd, (uint8_t*) p + u->memchunk.index, len, &write_type); in thread_func()
758 u->memchunk.index += w; in thread_func()
819 memchunk.index = 0; in thread_func()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/
H A DvktMemoryAllocationTests.cpp446 log << TestLog::Message << "Memory type index: " << m_memoryTypeIndex << TestLog::EndMessage; in iterate()
449 m_result.fail("Invalid heap index defined for memory type."); in iterate()
626 deUint32 index; in iterate() member
709 if ((m_memoryProperties.memoryTypes[type.index].propertyFlags & vk::VK_MEMORY_PROPERTY_DEVICE_COHERENT_BIT_AMD) > 0 && !m_deviceCoherentMemSupported) in iterate()
849 memoryType.index // memoryTypeIndex; in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationUserDefinedIO.cpp115 virtual std::string basicSubobjectAtIndex (const int index, const int arraySize) const = 0;
262 std::string basicSubobjectAtIndex (const int index, const int arraySize) const;
343 std::string basicSubobjectAtIndex (const int index, const int arraySize) const;
703 << "// Will contain the index of the first incorrect input,\n" in initPrograms()
722 << " int index = atomicAdd(sb_out.numInvocations, 1);\n" in initPrograms()
723 << " sb_out.firstFailedInputIndex[index] = firstFailedInputIndex;\n" in initPrograms()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/video/
H A DvktVideoFrameBuffer.cpp221 NvPerFrameDecodeResources& operator[](unsigned int index) in operator []() argument
223 DE_ASSERT(index < m_perFrameDecodeResources.size()); in operator []()
224 return m_perFrameDecodeResources[index]; in operator []()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/
H A DvktMemoryAllocationTests.cpp446 log << TestLog::Message << "Memory type index: " << m_memoryTypeIndex << TestLog::EndMessage; in iterate()
449 m_result.fail("Invalid heap index defined for memory type."); in iterate()
622 deUint32 index; in iterate() member
705 if ((m_memoryProperties.memoryTypes[type.index].propertyFlags & vk::VK_MEMORY_PROPERTY_DEVICE_COHERENT_BIT_AMD) > 0 && !m_deviceCoherentMemSupported) in iterate()
845 memoryType.index // memoryTypeIndex; in iterate()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
H A DProgramPrelude.cpp1199 ANGLE_VectorElemRef(thread metal::vec<T, N> &vec, int index)
1200 : mVec(vec), mRef(vec[index]), mIndex(index)
1205 ANGLE_ALWAYS_INLINE ANGLE_VectorElemRef<T, N> ANGLE_elem_ref(thread metal::vec<T, N> &vec, int index)
1207 return ANGLE_VectorElemRef<T, N>(vec, index);
3905 auto getArgType = [node, argCount](size_t index) -> const TType & { in visitAggregate()
3906 ASSERT(index < argCount); in visitAggregate()
3907 TIntermTyped *arg = node->getChildNode(index)->getAsTyped(); in visitAggregate()
/third_party/skia/src/core/
H A DSkBlitter.cpp513 int index = prevRite - x;
514 ((uint8_t*)aa)[index] = 0; // skip runs after right
515 ((int16_t*)runs)[index] = SkToS16(left - prevRite);
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_parser.cpp408 uint32_t index = ops[i + 1]; in parse() local
413 ir.set_member_decoration_string(target, index, decoration, in parse()
416 ir.set_member_decoration(target, index, decoration, ir.get_decoration(group_id, decoration)); in parse()
/third_party/skia/third_party/externals/freetype/src/psaux/
H A Dpshints.c60 size_t j; /* index of upper hint map edge */
192 hint->index = indexStemHint; /* index in original stem hint array */ in cf2_hint_init()
306 FT_TRACE6(( " index csCoord dsCoord scale flags\n" )); in cf2_hintmap_dump()
314 hint->index, in cf2_hintmap_dump()
422 /* index of upper edge (same value for ghost hint) */ in cf2_hintmap_adjustHints()
641 /* linear search to find index value of insertion point */ in cf2_hintmap_insertHint()
1072 hintmap->edge[i].index ); in cf2_hintmap_build()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-cff-interp-cs-common.hh82 byte_str_t operator [] (unsigned int index) const in operator []()
84 if (unlikely (!subrs || index >= subrs->count)) in operator []()
87 return (*subrs)[index]; in operator []()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
H A DMipsConstantIslandPass.cpp301 /// pointer, the constpool index, and the number of CPUser's which
313 /// instructions. For each original constpool index (i.e. those that
605 /// findConstPoolEntry - Given the constpool index and CONSTPOOL_ENTRY MI,
611 // Number of entries per constpool index should be small, just do a in findConstPoolEntry()
630 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index."); in getCPEAlign()
1022 /// decrementCPEReferenceCount - find the constant pool entry with index CPI
1659 unsigned index = MCP->getConstantPoolIndex(C, 4); in prescanForConstants() local
1660 I->getOperand(2).ChangeToImmediate(index); in prescanForConstants()
1665 I->addOperand(MachineOperand::CreateCPI(index, 0)); in prescanForConstants()
/third_party/skia/third_party/externals/tint/samples/
H A Dmain.cc565 spv_errors += "error: line " + std::to_string(position.index) + ": " + in Disassemble()
569 spv_errors += "warning: line " + std::to_string(position.index) + ": " + in Disassemble()
573 spv_errors += "info: line " + std::to_string(position.index) + ": " + in Disassemble()
/third_party/skia/third_party/externals/tint/src/transform/
H A Ddecompose_memory_access.cc858 auto* offset = state.Mul(arr->Stride(), accessor->index);
867 auto* offset = state.Mul(vec_ty->type()->Size(), accessor->index);
876 auto* offset = state.Mul(mat_ty->ColumnStride(), accessor->index);

Completed in 49 milliseconds

1...<<261262263264265266267268269270>>...308