/third_party/rust/crates/libc/src/unix/newlib/ |
H A D | align.rs | 15 size: [u8; ::__SIZEOF_PTHREAD_MUTEX_T], 29 size: [u8; ::__SIZEOF_PTHREAD_RWLOCK_T], 47 size: [u8; ::__SIZEOF_PTHREAD_MUTEXATTR_T], 52 size: [u8; ::__SIZEOF_PTHREAD_COND_T], 57 size: [u8; ::__SIZEOF_PTHREAD_CONDATTR_T],
|
/third_party/skia/src/core/ |
H A D | SkMipmap.h | 47 // Determines the size of a given mipmap level. 77 static bool Deserialize(SkMipmapBuilder*, const void* data, size_t size); 89 SkMipmap(void* malloc, size_t size) : INHERITED(malloc, size) {} in SkMipmap() argument 90 SkMipmap(size_t size, SkDiscardableMemory* dm) : INHERITED(size, dm) {} in SkMipmap() argument
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkDescriptorPool.hpp | 37 uint8_t *findAvailableMemory(size_t size); 43 Node(uint8_t *set, size_t size) in Node() 45 , size(size) in Node() 51 size_t size = 0; member
|
/third_party/skia/third_party/externals/spirv-tools/source/reduce/ |
H A D | reduction_pass.cpp | 33 BuildModule(target_env_, consumer_, binary.data(), binary.size()); in TryApplyReduction() 41 if (granularity_ > opportunities.size()) { in TryApplyReduction() 42 granularity_ = std::max((uint32_t)1, (uint32_t)opportunities.size()); in TryApplyReduction() 47 if (index_ >= opportunities.size()) { in TryApplyReduction() 58 i < std::min(index_ + granularity_, (uint32_t)opportunities.size()); in TryApplyReduction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/reduce/ |
H A D | reduction_pass.cpp | 33 BuildModule(target_env_, consumer_, binary.data(), binary.size()); in TryApplyReduction() 41 if (granularity_ > opportunities.size()) { in TryApplyReduction() 42 granularity_ = std::max((uint32_t)1, (uint32_t)opportunities.size()); in TryApplyReduction() 47 if (index_ >= opportunities.size()) { in TryApplyReduction() 58 i < std::min(index_ + granularity_, (uint32_t)opportunities.size()); in TryApplyReduction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
H A D | YAML.cpp | 29 if (Scalar.size() % 2 != 0) in input() 33 for (unsigned I = 0, N = Scalar.size(); I != N; ++I) in input() 42 OS.write((const char *)Data.data(), std::min<uint64_t>(N, Data.size())); in writeAsBinary() 46 for (uint64_t I = 0, E = std::min<uint64_t>(N, Data.size() / 2); I != E; in writeAsBinary() 59 OS.write((const char *)Data.data(), Data.size()); in writeAsHex()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | IntEqClasses.cpp | 27 while (EC.size() < N) in grow() 28 EC.push_back(EC.size()); in grow() 62 for (unsigned i = 0, e = EC.size(); i != e; ++i) in compress() 70 for (unsigned i = 0, e = EC.size(); i != e; ++i) in uncompress() 71 if (EC[i] < Leader.size()) in uncompress()
|
/third_party/skia/third_party/externals/tint/src/writer/spirv/ |
H A D | function.h | 75 uint32_t size = 2 + declaration_.word_length(); in word_length() local 78 size += param.word_length(); in word_length() 81 size += var.word_length(); in word_length() 84 size += inst.word_length(); in word_length() 86 return size; in word_length()
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | layout.rs | 12 /// The size (in bytes) of this layout. 13 pub size: usize, 36 /// Gets the integer type name for a given known size. 39 size: usize, in known_type_for_size() 41 Some(match size { in known_type_for_size() 51 /// Construct a new `Layout` with the given `size` and `align`. It is not 53 pub fn new(size: usize, align: usize) -> Self { in new() 55 size, in new() 61 fn for_size_internal(ptr_size: usize, size: usize) -> Self { in for_size_internal() 63 while size in for_size_internal() [all...] |
/third_party/skia/modules/skplaintexteditor/include/ |
H A D | stringslice.h | 18 StringSlice(const StringSlice& that) : StringSlice(that.begin(), that.size()) {} in StringSlice() 27 std::size_t size() const { return fLength; } in size() function in SkPlainTextEditor::StringSlice 35 void reserve(std::size_t size) { if (size > fCapacity) { this->realloc(size); } } in reserve() argument
|
/third_party/selinux/libselinux/src/ |
H A D | get_initial_context.c | 18 size_t size; in security_get_initial_context_raw() local 41 size = selinux_page_size; in security_get_initial_context_raw() 42 buf = malloc(size); in security_get_initial_context_raw() 47 memset(buf, 0, size); in security_get_initial_context_raw() 48 ret = read(fd, buf, size - 1); in security_get_initial_context_raw()
|
/third_party/spirv-tools/source/reduce/ |
H A D | reduction_pass.cpp | 33 BuildModule(target_env_, consumer_, binary.data(), binary.size()); in TryApplyReduction() 41 if (granularity_ > opportunities.size()) { in TryApplyReduction() 42 granularity_ = std::max((uint32_t)1, (uint32_t)opportunities.size()); in TryApplyReduction() 47 if (index_ >= opportunities.size()) { in TryApplyReduction() 58 i < std::min(index_ + granularity_, (uint32_t)opportunities.size()); in TryApplyReduction()
|
/foundation/multimodalinput/input/service/touch_event_normalize/src/ |
H A D | touch_gesture_detector.cpp | 116 gestureType_, downPoint_.size(), isFingerReady_ ? "true" : "false", pointerId, x, y); in HandleDownEvent() 126 if (downPoint_.size() < THREE_FINGER_COUNT) { in HandleMoveEvent() 168 if (downPoint_.size() < FOUR_FINGER_COUNT || lastDistance_.empty()) { in HandlePinchMoveEvent() 196 static_cast<int32_t>(downPoint_.size() - MINIMUM_FINGER_COUNT_OFFSET)) { in HandlePinchMoveEvent() 226 gestureType_, downPoint_.size(), isFingerReady_ ? "true" : "false", pointerId); in HandleUpEvent() 289 if (downPoint_.size() < THREE_FINGER_COUNT) { in HandleFingerDown() 309 if (downPoint_.size() < THREE_FINGER_COUNT) { in GetMaxDownInterval() 310 MMI_HILOGE("downPoint_ size(%{public}zu)", downPoint_.size()); in GetMaxDownInterval() 329 if (downPoint_.size() < THREE_FINGER_COUN in GetMaxFingerSpacing() [all...] |
/foundation/distributedhardware/device_manager/test/commonfuzztest/authenticatedevice_fuzzer/ |
H A D | authenticate_device_fuzzer.cpp | 201 void AuthenticateDeviceFirstFuzzTest(const uint8_t* data, size_t size) in AuthenticateDeviceFirstFuzzTest() argument 203 if ((data == nullptr) || (size == 0)) { in AuthenticateDeviceFirstFuzzTest() 207 std::string str(reinterpret_cast<const char*>(data), size); in AuthenticateDeviceFirstFuzzTest() local 228 void AuthenticateDeviceSecondFuzzTest(const uint8_t* data, size_t size) in AuthenticateDeviceSecondFuzzTest() argument 230 if ((data == nullptr) || (size == 0)) { in AuthenticateDeviceSecondFuzzTest() 234 std::string str(reinterpret_cast<const char*>(data), size); in AuthenticateDeviceSecondFuzzTest() local 253 void AuthenticateDeviceThirdFuzzTest(const uint8_t* data, size_t size) in AuthenticateDeviceThirdFuzzTest() argument 255 if ((data == nullptr) || (size == 0)) { in AuthenticateDeviceThirdFuzzTest() 259 std::string str(reinterpret_cast<const char*>(data), size); in AuthenticateDeviceThirdFuzzTest() local 281 void AuthenticateDeviceFourthFuzzTest(const uint8_t* data, size_t size) in AuthenticateDeviceFourthFuzzTest() argument 287 std::string str(reinterpret_cast<const char*>(data), size); AuthenticateDeviceFourthFuzzTest() local 332 AuthenticateDeviceFifthFuzzTest(const uint8_t* data, size_t size) AuthenticateDeviceFifthFuzzTest() argument 338 std::string str(reinterpret_cast<const char*>(data), size); AuthenticateDeviceFifthFuzzTest() local 386 LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) LLVMFuzzerTestOneInput() argument [all...] |
/foundation/distributeddatamgr/preferences/frameworks/cj/src/ |
H A D | preferences_impl.cpp | 198 for (int64_t i = 0; i < value.boolArray.size; i++) { in CValueTypeToNativeValue() 206 for (int64_t i = 0; i < value.doubleArray.size; i++) { in CValueTypeToNativeValue() 214 for (int64_t i = 0; i < value.stringArray.size; i++) { in CValueTypeToNativeValue() 243 for (int64_t i = 0; i < v.stringArray.size; i++) { in FreeValueType() 263 if (doubles.size() == 0) { in VectorToDoubleArray() 266 double* head = static_cast<double*>(malloc(doubles.size() * sizeof(double))); in VectorToDoubleArray() 271 for (unsigned long i = 0; i < doubles.size(); i++) { in VectorToDoubleArray() 274 CArrDouble doubleArray = { head, doubles.size() }; in VectorToDoubleArray() 280 if (bools.size() == 0) { in VectorToBoolArray() 283 bool* head = static_cast<bool*>(malloc(bools.size() * sizeo in VectorToBoolArray() [all...] |
/test/xts/acts/distributeddatamgr/relationalStoretest/relationalStoreJstest/hap/entry/src/ohosTest/js/test/ |
H A D | RelationalStoreAssetResultSetJsunit.test.js | 37 size: "size1",
46 size: "size2",
55 size: "size3",
64 size: "size4",
72 size: "size5",
81 size: "size6",
90 size: "size7",
175 expect("size1").assertEqual(data1.size);
184 expect("size2").assertEqual(data2.size);
217 expect("size2").assertEqual(data1.size);
[all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | af_speechnorm.c | 46 int size; member 132 av_assert1(pi[start].size > 0); in get_pi_samples() 133 sum += pi[start].size; in get_pi_samples() 187 av_assert1(cc->pi[start].size > 0); in next_pi() 189 cc->pi_size = cc->pi[start].size; in next_pi() 205 int size = cc->pi_size; in min_gain() local 209 while (size <= max_size) { in min_gain() 214 size += cc->pi[idx].size; in min_gain() 242 (pi[pi_end].size > max_perio [all...] |
/third_party/node/deps/openssl/config/archs/linux32-s390x/asm_avx2/crypto/ |
H A D | s390xcpuid.S | 25 .size OPENSSL_s390x_facilities,.-OPENSSL_s390x_facilities 131 .size OPENSSL_s390x_functions,.-OPENSSL_s390x_functions 148 .size OPENSSL_rdtsc,.-OPENSSL_rdtsc 161 .size OPENSSL_atomic_add,.-OPENSSL_atomic_add 181 .size OPENSSL_wipe_cpu,.-OPENSSL_wipe_cpu 216 .size OPENSSL_cleanse,.-OPENSSL_cleanse 243 .size CRYPTO_memcmp,.-CRYPTO_memcmp 251 .size OPENSSL_instrument_bus,.-OPENSSL_instrument_bus 259 .size OPENSSL_instrument_bus2,.-OPENSSL_instrument_bus2 267 .size OPENSSL_vx_prob [all...] |
/third_party/node/deps/openssl/config/archs/linux32-s390x/asm/crypto/ |
H A D | s390xcpuid.S | 25 .size OPENSSL_s390x_facilities,.-OPENSSL_s390x_facilities 131 .size OPENSSL_s390x_functions,.-OPENSSL_s390x_functions 148 .size OPENSSL_rdtsc,.-OPENSSL_rdtsc 161 .size OPENSSL_atomic_add,.-OPENSSL_atomic_add 181 .size OPENSSL_wipe_cpu,.-OPENSSL_wipe_cpu 216 .size OPENSSL_cleanse,.-OPENSSL_cleanse 243 .size CRYPTO_memcmp,.-CRYPTO_memcmp 251 .size OPENSSL_instrument_bus,.-OPENSSL_instrument_bus 259 .size OPENSSL_instrument_bus2,.-OPENSSL_instrument_bus2 267 .size OPENSSL_vx_prob [all...] |
/third_party/node/deps/openssl/config/archs/linux64-s390x/asm_avx2/crypto/ |
H A D | s390xcpuid.S | 25 .size OPENSSL_s390x_facilities,.-OPENSSL_s390x_facilities 131 .size OPENSSL_s390x_functions,.-OPENSSL_s390x_functions 148 .size OPENSSL_rdtsc,.-OPENSSL_rdtsc 161 .size OPENSSL_atomic_add,.-OPENSSL_atomic_add 181 .size OPENSSL_wipe_cpu,.-OPENSSL_wipe_cpu 216 .size OPENSSL_cleanse,.-OPENSSL_cleanse 243 .size CRYPTO_memcmp,.-CRYPTO_memcmp 251 .size OPENSSL_instrument_bus,.-OPENSSL_instrument_bus 259 .size OPENSSL_instrument_bus2,.-OPENSSL_instrument_bus2 267 .size OPENSSL_vx_prob [all...] |
/third_party/node/deps/openssl/config/archs/linux64-s390x/asm/crypto/ |
H A D | s390xcpuid.S | 25 .size OPENSSL_s390x_facilities,.-OPENSSL_s390x_facilities 131 .size OPENSSL_s390x_functions,.-OPENSSL_s390x_functions 148 .size OPENSSL_rdtsc,.-OPENSSL_rdtsc 161 .size OPENSSL_atomic_add,.-OPENSSL_atomic_add 181 .size OPENSSL_wipe_cpu,.-OPENSSL_wipe_cpu 216 .size OPENSSL_cleanse,.-OPENSSL_cleanse 243 .size CRYPTO_memcmp,.-CRYPTO_memcmp 251 .size OPENSSL_instrument_bus,.-OPENSSL_instrument_bus 259 .size OPENSSL_instrument_bus2,.-OPENSSL_instrument_bus2 267 .size OPENSSL_vx_prob [all...] |
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | s390xcpuid.pl | 53 .size OPENSSL_s390x_facilities,.-OPENSSL_s390x_facilities 159 .size OPENSSL_s390x_functions,.-OPENSSL_s390x_functions 176 .size OPENSSL_rdtsc,.-OPENSSL_rdtsc 189 .size OPENSSL_atomic_add,.-OPENSSL_atomic_add 209 .size OPENSSL_wipe_cpu,.-OPENSSL_wipe_cpu 244 .size OPENSSL_cleanse,.-OPENSSL_cleanse 271 .size CRYPTO_memcmp,.-CRYPTO_memcmp 279 .size OPENSSL_instrument_bus,.-OPENSSL_instrument_bus 287 .size OPENSSL_instrument_bus2,.-OPENSSL_instrument_bus2 295 .size OPENSSL_vx_prob [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/tessellation/ |
H A D | vktTessellationFractionalSpacingTests.cpp | 60 std::vector<MembT> result(objs.size()); in members() 61 for (int i = 0; i < static_cast<int>(objs.size()); ++i) in members() 145 if (static_cast<int>(coords.size()) != finalLevel + 1) in verifyFractionalSpacingSingle() 147 log << tcu::TestLog::Message << "Failure: number of vertices is " << coords.size() << "; expected " << finalLevel + 1 in verifyFractionalSpacingSingle() 176 for (int segNdx = 1; segNdx < static_cast<int>(segments.size()); ++segNdx) in verifyFractionalSpacingSingle() 208 *pOutAdditionalSegmentLength = (segments.size() == 1 ? -1.0f : segments[0].length); in verifyFractionalSpacingSingle() 213 if (segmentsA.size() != 2 && segmentsB.size() != 2) in verifyFractionalSpacingSingle() 221 if (segmentsB.size() != 2) in verifyFractionalSpacingSingle() 229 if (segmentsA.size() ! in verifyFractionalSpacingSingle() [all...] |
/third_party/openssl/crypto/ |
H A D | s390xcpuid.pl | 53 .size OPENSSL_s390x_facilities,.-OPENSSL_s390x_facilities 159 .size OPENSSL_s390x_functions,.-OPENSSL_s390x_functions 176 .size OPENSSL_rdtsc,.-OPENSSL_rdtsc 189 .size OPENSSL_atomic_add,.-OPENSSL_atomic_add 209 .size OPENSSL_wipe_cpu,.-OPENSSL_wipe_cpu 244 .size OPENSSL_cleanse,.-OPENSSL_cleanse 271 .size CRYPTO_memcmp,.-CRYPTO_memcmp 279 .size OPENSSL_instrument_bus,.-OPENSSL_instrument_bus 287 .size OPENSSL_instrument_bus2,.-OPENSSL_instrument_bus2 295 .size OPENSSL_vx_prob [all...] |
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/ |
H A D | MinimumBufferSizeValidationTests.cpp | 30 uint64_t size; member 41 for (size_t i = 0; i < originalSizes.size(); ++i) { in WithEachSizeOffsetBy() 55 // To validate size: in CheckSizeBounds() 57 // Check valid with bind group with correct size in CheckSizeBounds() 59 // Make sure (every size - 1) produces an error in CheckSizeBounds() 66 // Make sure (every size + 1) works in CheckSizeBounds() 155 bufferDescriptor.size = bufferSize; in CreateBuffer() 170 descriptor.bindGroupLayoutCount = layouts.size(); in CreateComputePipeline() 200 descriptor.bindGroupLayoutCount = layouts.size(); in CreateRenderPipeline() 217 ASSERT(bindings.size() in CreateBindGroupLayout() [all...] |