Home
last modified time | relevance | path

Searched refs:insert (Results 3201 - 3225 of 3226) sorted by relevance

1...<<121122123124125126127128129130

/third_party/vixl/src/aarch64/
H A Dmacro-assembler-aarch64.h373 void insert(BranchInfo branch_info) { in insert() function in vixl::aarch64::VeneerPool::BranchInfoSet
376 typed_set_[BranchIndexFromType(type)].insert(branch_info); in insert()
H A Dassembler-aarch64.h121 links_.insert(instruction); in AddLink()
703 // Rotate register right and insert into NZCV flags under the control of a
782 // Bitfield insert.
795 // Bitfield extract and insert low.
818 // Signed bitfield insert with zero at right.
866 // Unsigned bitfield insert with zero at right.
2757 // Bitwise insert if false.
2760 // Bitwise insert if true.
3030 // Shift left by immediate and insert.
3033 // Shift right by immediate and insert
[all...]
/third_party/glslang/glslang/MachineIndependent/
H A DInitialize.cpp10234 symbolTable.insert(*new TVariable(NewPoolTString("gl_FragData"), fragData)); in identifyBuiltIns()
/third_party/node/deps/v8/src/wasm/
H A Dfunction-body-decoder-impl.h1160 local_types_.insert(insert_iterator, count, type) + count; in DecodeLocals()
3636 // insert a number of unreachable values underneath the current values equal
/third_party/node/deps/v8/src/compiler/
H A Dsimplified-lowering.cc74 // During this phase, use the {RepresentationChanger} to insert
861 // If the node is unreachable, insert an Unreachable node and mark the in ChangeToDeadValue()
950 // In the change phase, insert a change before the use if necessary. in ConvertInput()
993 it = might_need_revisit_.insert({input, ZoneVector<Node*>(zone())}).first; in MarkAsPossibleRevisit()
1324 // insert the necessary conversions. in VisitStateValues()
4328 // insert Unreachable node after it. in InsertUnreachableIfNecessary()
H A Dwasm-compiler.cc4386 lowering_special_case_->replacements.insert({original, replacement}); in AddInt64LoweringReplacement()
/third_party/node/deps/v8/src/codegen/mips64/
H A Dassembler-mips64.cc3821 internal_reference_positions_.insert(label->pos()); in dd()
/third_party/node/deps/v8/src/codegen/riscv64/
H A Dassembler-riscv64.cc3709 internal_reference_positions_.insert(label->pos()); in dd()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp4574 "requested insert overflows register"); in MatchAndEmitInstruction()
4630 "requested insert overflows register"); in MatchAndEmitInstruction()
5439 if (RegisterReqs.insert(std::make_pair(Name, pair)).first->second != pair) in parseDirectiveReq()
/third_party/protobuf/src/google/protobuf/
H A Ddescriptor_unittest.cc190 // Empty enums technically aren't allowed. We need to insert a dummy value
555 if (!visited->insert(file->name()).second) { in ExtractDebugString()
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fPrimitiveBoundingBoxTests.cpp318 cases.insert(cases.begin(), DE_ARRAY_BEGIN(fixedCases), DE_ARRAY_END(fixedCases));
H A Des31fProgramInterfaceQueryTests.cpp2221 buffers.insert(m_program->getShaders()[0]->getDefaultBlock().variables[ndx].layout.binding);
3274 // Don't insert inside a interface block
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/rasterization/
H A DvktRasterizationTests.cpp847 fullOffscreenData.insert(fullOffscreenData.end(), colors.begin(), colors.end()); in drawPrimitives()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cGPUShaderFP64Tests.cpp10682 argument_list.insert(argument_list.begin(), current_node_ptr->type); in getArgumentListsForVariableType()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp1274 // If the argument has been promoted from a smaller type, insert an in convertLocVTToValVT()
4879 // Use VLVGx to insert the other elements. in buildVector()
4953 // Just insert the scalar into element 0 of an undefined vector.
4981 // Otherwise bitcast to the equivalent integer form and insert via a GPR.
6082 // If this is an i16 load, insert the truncate. in combineBSWAP()
6701 MF.insert(std::next(MachineFunction::iterator(MBB)), NewMBB); in emitBlockAfter()
8023 llvm_unreachable("Unexpected instr type to insert"); in EmitInstrWithCustomInserter()
/third_party/skia/modules/skparagraph/tests/
H A DSkParagraphTest.cpp5965 str.insert(0, "عل"); in UNIX_ONLY_TEST()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/rasterization/
H A DvktRasterizationTests.cpp844 fullOffscreenData.insert(fullOffscreenData.end(), colors.begin(), colors.end()); in drawPrimitives()
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Dicu4j-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ibm/icu/ com/ibm/icu/impl/ ...
/third_party/node/deps/v8/src/api/
H A Dapi.cc10589 ph->ordered_blocks_.insert(blocks_.back()); in DetachPersistent()
/third_party/node/test/fixtures/snapshot/
H A Dtypescript.js1050 function insertSorted(array, insert, compare, allowDuplicates) {
1052 array.push(insert);
1055 var insertIndex = binarySearch(array, insert, identity, compare);
1057 array.splice(~insertIndex, 0, insert);
1060 array.splice(insertIndex, 0, insert);
2260 : Math.min(/*delete*/ previous[j] + 1, /*insert*/ current[j - 1] + 1, /*substitute*/ substitutionDistance);
[all...]
/third_party/typescript/lib/
H A Dtsserverlibrary.js871 function insertSorted(array, insert, compare, allowDuplicates) {
873 array.push(insert);
876 var insertIndex = binarySearch(array, insert, identity, compare);
878 array.splice(~insertIndex, 0, insert);
882 array.splice(insertIndex, 0, insert);
2132 : Math.min(/*delete*/ previous[j] + 1, /*insert*/ current[j - 1] + 1, /*substitute*/ substitutionDistance);
[all...]
H A Dtypescript.js862 function insertSorted(array, insert, compare, allowDuplicates) {
864 array.push(insert);
867 var insertIndex = binarySearch(array, insert, identity, compare);
869 array.splice(~insertIndex, 0, insert);
873 array.splice(insertIndex, 0, insert);
2123 : Math.min(/*delete*/ previous[j] + 1, /*insert*/ current[j - 1] + 1, /*substitute*/ substitutionDistance);
[all...]
H A DtypescriptServices.js862 function insertSorted(array, insert, compare, allowDuplicates) {
864 array.push(insert);
867 var insertIndex = binarySearch(array, insert, identity, compare);
869 array.splice(~insertIndex, 0, insert);
873 array.splice(insertIndex, 0, insert);
2123 : Math.min(/*delete*/ previous[j] + 1, /*insert*/ current[j - 1] + 1, /*substitute*/ substitutionDistance);
[all...]
H A Dtsserver.js872 function insertSorted(array, insert, compare, allowDuplicates) {
874 array.push(insert);
877 var insertIndex = binarySearch(array, insert, identity, compare);
879 array.splice(~insertIndex, 0, insert);
883 array.splice(insertIndex, 0, insert);
2133 : Math.min(/*delete*/ previous[j] + 1, /*insert*/ current[j - 1] + 1, /*substitute*/ substitutionDistance);
[all...]
H A DtypingsInstaller.js852 function insertSorted(array, insert, compare, allowDuplicates) {
854 array.push(insert);
857 var insertIndex = binarySearch(array, insert, identity, compare);
859 array.splice(~insertIndex, 0, insert);
863 array.splice(insertIndex, 0, insert);
2113 : Math.min(/*delete*/ previous[j] + 1, /*insert*/ current[j - 1] + 1, /*substitute*/ substitutionDistance);
[all...]

Completed in 343 milliseconds

1...<<121122123124125126127128129130