Home
last modified time | relevance | path

Searched refs:size (Results 19276 - 19300 of 40742) sorted by relevance

1...<<771772773774775776777778779780>>...1630

/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dpass_manager.h143 return static_cast<uint32_t>(passes_.size()); in NumPasses()
147 SPIRV_ASSERT(consumer_, index < passes_.size(), "index out of bound"); in GetPass()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Dcall_graph.cpp130 assert(functions_in_topological_order_.size() == function_in_degree.size() && in ComputeTopologicalOrderOfFunctions()
H A Dtransformation_function_call.cpp70 static_cast<uint32_t>(message_.argument_id().size())) { in IsApplicable()
101 arg_index < static_cast<uint32_t>(message_.argument_id().size()); in IsApplicable()
H A Dtransformation_replace_branch_from_dead_block_with_exit.cpp111 assert(new_phi_in_operands.size() == phi_inst->NumInOperands() - 2); in Apply()
161 if (ir_context->cfg()->preds(successor->id()).size() < 2) { in BlockIsSuitable()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dflatten_decoration_pass.cpp103 assert((member_id_pairs.size() % 2) == 0); in Process()
104 for (size_t i = 0; i < member_id_pairs.size(); i += 2) { in Process()
H A Dpass_manager.h143 return static_cast<uint32_t>(passes_.size()); in NumPasses()
147 SPIRV_ASSERT(consumer_, index < passes_.size(), "index out of bound"); in GetPass()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/wasm/
H A Dspirv-tools.cpp36 spirv.assign(ptr, ptr + buffer.size() / 4); in dis()
49 return emscripten::val(emscripten::typed_memory_view(spirv.size() * 4, in as()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Dstrip_reflect_info_test.cpp58 optimizer.Run(binary_in.data(), binary_in.size(), &binary_out); in TEST_F()
62 tools.Disassemble(binary_out.data(), binary_out.size(), &disassembly); in TEST_F()
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dlossless_common.h50 // Computes sampled size of 'size' when sampling using 'sampling bits'.
51 static WEBP_INLINE uint32_t VP8LSubSampleSize(uint32_t size, in VP8LSubSampleSize() argument
53 return (size + (1 << sampling_bits) - 1) >> sampling_bits; in VP8LSubSampleSize()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Ddouble-conversion-bignum.h120 // With bigit size of 28 we loose some bits, but a double still fits easily
128 static void EnsureCapacity(const int size) { in EnsureCapacity() argument
129 if (size > kBigitCapacity) { in EnsureCapacity()
H A Drbt.cpp48 if (parser.idBlockVector.size() != 0 || in _construct()
50 parser.dataVector.size() == 0) { in _construct()
H A Dregexcmp.h48 kStackSize = 100 // The size of the state stack for
113 int32_t allocateData(int32_t size); // Allocate space in the matcher data area.
115 int32_t allocateStackData(int32_t size); // Allocate space in the match back-track stack frame.
/third_party/skia/third_party/externals/libwebp/src/utils/
H A Dbit_reader_utils.h59 // Pick values that fit natural register size.
106 const uint8_t* const start, size_t size);
109 const uint8_t* const start, size_t size);
135 #define VP8L_LBITS 64 // Number of bits prefetched (= bit-size of vp8l_val_t).
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/
H A DAudioLatencyTuner.java28 * Optimize the buffer size for an AudioTrack based on the underrun count.
123 * @return allocated size of the buffer
129 int size = ((Integer) result).intValue(); in getBufferCapacityInFrames()
130 return size; in getBufferCapacityInFrames()
143 * Note that you may not get the size you asked for.
145 * @return actual size of the buffer
222 * Raise or lower the buffer size in blocks.
223 * @return true if the size did not change
231 Log.i(TAG, "Buffer size changed from " + original + " to " + actual); in incrementThreshold()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/src/main/cpp/audio/
H A DNDKExtractor.cpp121 //LOGV("Sample size is: %d", inputSize); in decode()
163 /*LOGV("Got output buffer index %d, buffer size: %d, info size: %d writing to pcm index %d", in decode()
166 info.size, in decode()
170 memcpy(targetData + bytesWritten, outputBuffer, info.size); in decode()
171 bytesWritten+=info.size; in decode()
/third_party/skia/src/pdf/
H A DSkDeflate.cpp23 template <typename T> void* skia_alloc_func(void*, T items, T size) { in skia_alloc_func() argument
24 return sk_calloc_throw(SkToSizeT(items) * SkToSizeT(size)); in skia_alloc_func()
/third_party/skia/src/ports/
H A DSkFontMgr_custom_embedded.cpp12 struct SkEmbeddedResource { const uint8_t* data; size_t size; }; member
28 auto stream = std::make_unique<SkMemoryStream>(fontEntry.data, fontEntry.size, false);
/third_party/skia/src/sksl/ir/
H A DSkSLSymbolTable.cpp51 if (functions.size() > 0) { in lookup()
70 SkASSERT(functions.size() > 1); in lookup()
/third_party/skia/tests/
H A DSkSLES2ConformanceTest.cpp46 SkString shaderString{reinterpret_cast<const char*>(shaderData->bytes()), shaderData->size()}; in test_expect_fail()
63 SkString shaderString{reinterpret_cast<const char*>(shaderData->bytes()), shaderData->size()}; in test_expect_pass()
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DComputeSharedMemoryTests.cpp39 dstDesc.size = sizeof(uint32_t); in BasicTest()
164 dstDesc.size = 64; in TEST_P()
H A DComputeCopyStorageBufferTests.cpp42 srcDesc.size = kNumUints * sizeof(uint32_t); in BasicTest()
56 dstDesc.size = kNumUints * sizeof(uint32_t); in BasicTest()
/third_party/skia/third_party/externals/dawn/src/common/
H A DSerialQueue.h74 DAWN_ASSERT(values.size() > 0); in Enqueue()
81 DAWN_ASSERT(values.size() > 0); in Enqueue()
H A DSerialMap.h62 DAWN_ASSERT(values.size() > 0); in Enqueue()
70 DAWN_ASSERT(values.size() > 0); in Enqueue()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DDynamicUploader.cpp46 // Note: Validation ensures size is already aligned. in AllocateInternal()
101 for (size_t i = 0; i < mRingBuffers.size(); ++i) { in Deallocate()
106 if (mRingBuffers[i]->mAllocator.Empty() && i < mRingBuffers.size() - 1) { in Deallocate()
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
H A DGPURenderBundleEncoder.h54 std::optional<interop::GPUSize64> size) override;
59 std::optional<interop::GPUSize64> size) override;

Completed in 25 milliseconds

1...<<771772773774775776777778779780>>...1630