/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | pass_manager.h | 143 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 D | call_graph.cpp | 130 assert(functions_in_topological_order_.size() == function_in_degree.size() && in ComputeTopologicalOrderOfFunctions()
|
H A D | transformation_function_call.cpp | 70 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 D | transformation_replace_branch_from_dead_block_with_exit.cpp | 111 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 D | flatten_decoration_pass.cpp | 103 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 D | pass_manager.h | 143 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 D | spirv-tools.cpp | 36 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 D | strip_reflect_info_test.cpp | 58 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 D | lossless_common.h | 50 // 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 D | double-conversion-bignum.h | 120 // 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 D | rbt.cpp | 48 if (parser.idBlockVector.size() != 0 || in _construct() 50 parser.dataVector.size() == 0) { in _construct()
|
H A D | regexcmp.h | 48 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 D | bit_reader_utils.h | 59 // 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 D | AudioLatencyTuner.java | 28 * 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 D | NDKExtractor.cpp | 121 //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 D | SkDeflate.cpp | 23 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 D | SkFontMgr_custom_embedded.cpp | 12 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 D | SkSLSymbolTable.cpp | 51 if (functions.size() > 0) { in lookup() 70 SkASSERT(functions.size() > 1); in lookup()
|
/third_party/skia/tests/ |
H A D | SkSLES2ConformanceTest.cpp | 46 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 D | ComputeSharedMemoryTests.cpp | 39 dstDesc.size = sizeof(uint32_t); in BasicTest() 164 dstDesc.size = 64; in TEST_P()
|
H A D | ComputeCopyStorageBufferTests.cpp | 42 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 D | SerialQueue.h | 74 DAWN_ASSERT(values.size() > 0); in Enqueue() 81 DAWN_ASSERT(values.size() > 0); in Enqueue()
|
H A D | SerialMap.h | 62 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 D | DynamicUploader.cpp | 46 // 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 D | GPURenderBundleEncoder.h | 54 std::optional<interop::GPUSize64> size) override; 59 std::optional<interop::GPUSize64> size) override;
|