/third_party/openssl/crypto/bn/asm/ |
H A D | vis3-mont.pl | 63 sll $num, 2, $num ! size in bytes 65 andn %g5, 63, %g5 ! buffer size rounded up to 64 bytes 67 add %g5, %g1, %g1 ! 3*buffer size 348 .size bn_mul_mont_vis3, .-bn_mul_mont_vis3
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/Coverage/ |
H A D | CoverageMapping.h | 437 size_t size() const { return Instantiations.size(); } in size() function in llvm::coverage::InstantiationGroup 447 for (unsigned I = 1, E = Instantiations.size(); I < E; ++I) in hasName() 552 unsigned getMismatchedCount() const { return FuncHashMismatches.size(); } in getMismatchedCount() 701 // Return the coverage map data size for the funciton. 732 // Return the coverage map data size for the funciton.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | MustExecute.cpp | 441 const auto NumLoops = Loops.size(); 526 LLVM_DEBUG(dbgs() << "\t\t#Worklist: " << Worklist.size() << "\n"); in findForwardJoinPoint() 533 if (Worklist.size() == 1) in findForwardJoinPoint() 545 if (!JoinBB && Worklist.size() == 2) { in findForwardJoinPoint()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | ARMTargetParser.cpp | 301 A = A.substr(0, A.size() - 2); in getCanonicalArchName() 313 if (A.size() >= 2 && (A[0] != 'v' || !std::isdigit(A[1]))) in getCanonicalArchName() 500 size_t StartingNumFeatures = Features.size(); in appendArchExtFeatures() 532 return StartingNumFeatures != Features.size(); in appendArchExtFeatures()
|
H A D | SHA1.cpp | 214 InternalState.ByteCount += Data.size(); in update() 219 Data.size(), BLOCK_LENGTH - InternalState.BufferOffset); in update() 226 while (Data.size() >= BLOCK_LENGTH) { in update() 302 memcpy(Arr.data(), S.data(), S.size()); in hash()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUPrintfRuntimeBinding.cpp | 155 // NB: This is important for this string size to be divizable by 4 in lowerPrintfForGpu() 209 ArgCount <= OpConvSpecifiers.size(); in lowerPrintfForGpu() 263 LLVM_DEBUG(dbgs() << "Printf string original size = " << SizeStr in lowerPrintfForGpu() 286 for (size_t I = 0; I < Str.size(); ++I) { in lowerPrintfForGpu() 406 ArgCount <= OpConvSpecifiers.size(); in lowerPrintfForGpu() 476 assert((Size == 32 || Size == 64) && "unsupported size"); in lowerPrintfForGpu() 533 for (unsigned I = 0, E = WhatToStore.size(); I != E; ++I) { in lowerPrintfForGpu()
|
H A D | GCNSchedStrategy.cpp | 464 for (size_t E = Regions.size(); CurRegion != E; ++CurRegion) in computeBlockPressure() 516 BBStarters.reserve(Regions.size()); in getBBLiveInMap() 533 LiveIns.resize(Regions.size()); in finalizeSchedule() 534 Pressure.resize(Regions.size()); in finalizeSchedule()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
H A D | AMDGPUTargetStreamer.cpp | 429 EmitNote(Vendor, MCConstantExpr::create(Blob.size(), getContext()), Type, in finish() 439 auto NameSZ = Name.size() + 1; in EmitNote() 472 uint16_t VendorNameSize = VendorName.size() + 1; in EmitDirectiveHSACodeObjectISA() 473 uint16_t ArchNameSize = ArchName.size() + 1; in EmitDirectiveHSACodeObjectISA() 532 // and a MCExpr to calculate the size of the desc field. in EmitISAVersion() 559 // and a MCExpr to calculate the size of the desc field. in EmitHSAMetadata() 583 // and a MCExpr to calculate the size of the desc field. in EmitHSAMetadata() 630 // Kernel descriptor symbol's type and size are fixed. in EmitAmdhsaKernelDescriptor()
|
/third_party/skia/third_party/externals/tint/src/resolver/ |
H A D | dependency_graph.cc | 594 if (entry.dep_idx < entry.global->deps.size()) { in TraverseDependencies() 712 for (size_t i = 0; i < stack.size(); i++) { in CyclicDependencyFound() 723 for (size_t i = loop_start; i < stack.size(); i++) { in CyclicDependencyFound() 725 auto* to = (i + 1 < stack.size()) ? stack[i + 1] : stack[loop_start]; in CyclicDependencyFound()
|
/third_party/skia/third_party/externals/zlib/google/ |
H A D | zip_unittest.cc | 38 if (base::WriteFile(*file_path, content.data(), content.size()) == -1) in CreateFile() 283 EXPECT_EQ(file_info.size, 1); in TestTimeStamp() 496 EXPECT_EQ(zip_file_list_.size(), static_cast<size_t>(reader.num_entries())); in TEST_F() 497 for (size_t i = 0; i < zip_file_list_.size(); ++i) { in TEST_F() 513 // the uncompressed size is 3 bytes. The ZipReader and minizip code needs to in TEST_F()
|
/third_party/skia/third_party/externals/zlib/ |
H A D | zlib.h | 81 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 161 reports. After compression, total_in holds the total size of the 467 operation to complete. (The size of the uncompressed data may have been 552 The windowBits parameter is the base two logarithm of the window size 553 (the size of the history buffer). It should be in the range 8..15 for this 559 window size of 256 bytes) is not supported. As a result, a request for 8 567 determines the window size. deflate() will then generate raw deflate data 580 transmitting the window size to the decompressor. 633 Depending on the size of the compression data structures selected by 635 discarded, for example if the dictionary is larger than the window size [all...] |
/third_party/spirv-tools/source/fuzz/fact_manager/ |
H A D | data_synonym_and_id_equation_facts.cpp | 42 if (first.operands.size() != second.operands.size()) { in operator ()() 46 for (uint32_t i = 0; i < first.operands.size(); i++) { in operator ()() 513 if (equivalence_class.size() > maximum_equivalence_class_size) { in ComputeClosureOfFacts() 514 // This equivalence class is larger than the maximum size we are willing in ComputeClosureOfFacts() 635 // This indicates that the array has an unknown size, in which in ComputeClosureOfFacts() 663 // of size |num_components_in_composite| that is 'true' at the in ComputeClosureOfFacts()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | serv.cpp | 471 int32_t limit = factories->size(); in getKey() 554 for (int32_t i = cacheDescriptorList._obj->size(); --i >= 0;) { in getKey() 669 for (int32_t pos = factories->size(); --pos >= 0;) { in getVisibleIDMap() 970 return factories == NULL ? 0 : factories->size(); in countFactories()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | MachineBasicBlock.h | 187 unsigned size() const { return (unsigned)Insts.size(); } in size() function in llvm::MachineBasicBlock 277 return (unsigned)Predecessors.size(); in pred_size() 293 return (unsigned)Successors.size(); in succ_size()
|
/third_party/toybox/toys/pending/ |
H A D | crond.c | 107 static int getindex(char *src, int size) in getindex() argument 110 char *field = (size == 12) ? months : days; in getindex() 113 if (!(size == 7 || size == 12)) return -1; in getindex() 148 //static int parse_and_fillarray(char *dst, int size, char *src)
|
/third_party/vixl/test/aarch32/ |
H A D | test-assembler-cond-rd-operand-rn-t32.cc | 102 size_t size; member 417 if (((result_size != reference[i].size) || in TestHelper() 418 (memcmp(result_ptr, reference[i].encoding, reference[i].size) != in TestHelper() 425 for (uint32_t j = 0; j < reference[i].size; j++) { in TestHelper()
|
H A D | test-assembler-cond-rd-rn-operand-rm-rd-is-rn-is-sp-in-it-block-t32.cc | 89 size_t size; member 378 if (((result_size != reference[i].size) || in TestHelper() 379 (memcmp(result_ptr, reference[i].encoding, reference[i].size) != in TestHelper() 386 for (uint32_t j = 0; j < reference[i].size; j++) { in TestHelper()
|
H A D | test-assembler-cond-rd-rn-t32.cc | 95 size_t size; member 400 if (((result_size != reference[i].size) || in TestHelper() 401 (memcmp(result_ptr, reference[i].encoding, reference[i].size) != in TestHelper() 408 for (uint32_t j = 0; j < reference[i].size; j++) { in TestHelper()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | reflection.h | 75 int size() const { return accessor_->Size(data_); } in size() function in google::protobuf::RepeatedFieldRef 111 int size() const { return accessor_->Size(data_); } in size() function in google::protobuf::MutableRepeatedFieldRef 163 int size() const { return accessor_->Size(data_); } in size() function in google::protobuf::RepeatedFieldRef 222 int size() const { return accessor_->Size(data_); } in size() function in google::protobuf::MutableRepeatedFieldRef
|
/third_party/protobuf/src/google/protobuf/util/internal/ |
H A D | default_value_objectwriter.cc | 223 for (int i = 0; i < children_.size(); ++i) { in FindChild() 268 for (int i = 0; i < children_.size(); ++i) { in WriteChildren() 317 for (int i = 0; i < children_.size(); ++i) { in PopulateChildren() 394 for (int i = 0; i < children_.size(); ++i) { in PopulateChildren()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
H A D | beta_distribution_test.cc | 369 EXPECT_GE(cutoffs.size(), 3) << alpha_ << ", " << beta_; in SingleChiSquaredTest() 373 std::vector<int32_t> counts(cutoffs.size(), 0); in SingleChiSquaredTest() 382 const int dof = cutoffs.size() - 1; in SingleChiSquaredTest() 389 for (int i = 0; i < cutoffs.size(); i++) { in SingleChiSquaredTest()
|
/third_party/skia/modules/skottie/src/ |
H A D | Layer.cpp | 150 if (!jmode || jmode->size() != 1) { in AttachMask() 268 const auto dispatch_count = active ? fLayerAnimators.size() 351 fTransformAnimatorCount = fLayerScope.size(); in getTransform() 520 ? abuilder.fCurrentAnimatorScope->size() in buildRenderTree()
|
/third_party/skia/modules/svg/src/ |
H A D | SkSVGAttributeParser.cpp | 320 fCurPos += result->size(); 796 bool SkSVGAttributeParser::parse(SkSVGFontSize* size) { 799 *size = SkSVGFontSize(); 804 *size = SkSVGFontSize(length);
|
/third_party/spirv-tools/source/opt/ |
H A D | constants.h | 169 assert(words().size() == 1); in GetU32BitValue() 176 assert(words().size() == 2); in GetU64BitValue() 203 assert(words().size() == 1); in GetS32BitValue() 210 assert(words().size() == 2); in GetS64BitValue()
|
H A D | fold.cpp | 218 switch (operand_words.size()) { in OperateWords() 267 assert(scalar_words.size() == 1 && in FoldScalars() 329 // When shifting by a value larger than the size of the result, the in FoldBinaryIntegerOpToConstant() 331 // result of 0. If the shift amount is the same as the size of the in FoldBinaryIntegerOpToConstant() 549 scalar_words.size() == 1 && in FoldVectors() 621 return scalar->words().size() == 1; in IsFoldableConstant()
|