Searched refs:sizes (Results 1 - 5 of 5) sorted by relevance
/foundation/ability/form_fwk/test/fuzztest/formproviderdata_fuzzer/ |
H A D | formproviderdata_fuzzer.cpp | 46 int32_t sizes = static_cast<int32_t>(GetU32Data(data)); in DoSomethingInterestingWithMyAPI() local 47 formProviderData.AddImageData(picName, datas, sizes); in DoSomethingInterestingWithMyAPI() 65 formProviderData.WriteImageDataToParcel(parcel, picName, datas, sizes); in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/fuzztest/formashmem_fuzzer/ |
H A D | formashmem_fuzzer.cpp | 42 int32_t sizes = static_cast<int32_t>(GetU32Data(data)); in DoSomethingInterestingWithMyAPI() local 43 formAshmem.WriteToAshmem(name, nullptr, sizes); in DoSomethingInterestingWithMyAPI()
|
/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/ |
H A D | device_vk.cpp | 347 const auto& sizes = backendExtra->gpuMemoryAllocatorSizes; in GetAllocatorCreateInfo() local 348 if (sizes.defaultAllocationBlockSize != ~0u) { in GetAllocatorCreateInfo() 350 MAX_ALLOCATION_BLOCK_SIZE, Math::max(sizes.defaultAllocationBlockSize, MIN_ALLOCATION_BLOCK_SIZE)); in GetAllocatorCreateInfo() 352 if (sizes.customAllocationDynamicUboBlockSize != ~0u) { in GetAllocatorCreateInfo() 354 Math::max(sizes.customAllocationDynamicUboBlockSize, MIN_ALLOCATION_BLOCK_SIZE)); in GetAllocatorCreateInfo()
|
/foundation/graphic/graphic_3d/lume/LumeBinaryCompile/LumeShaderCompiler/src/ |
H A D | main.cpp | 677 UVec3 sizes;
681 sizes.x = static_cast<uint32_t>(*ptr | (*(ptr + 1) << 8) | (*(ptr + 2)) << 16 | (*(ptr + 3)) << 24);
683 sizes.y = static_cast<uint32_t>(*ptr | (*(ptr + 1) << 8) | (*(ptr + 2)) << 16 | (*(ptr + 3)) << 24);
685 sizes.z = static_cast<uint32_t>(*ptr | (*(ptr + 1) << 8) | (*(ptr + 2)) << 16 | (*(ptr + 3)) << 24);
688 return sizes;
|
/foundation/graphic/graphic_3d/lume/LumeRender/src/device/ |
H A D | shader_manager.cpp | 1502 "Invalid pipeline layout sizes clamped (name:%s). Set count %u <= %u, push constant size %u <= %u", 2249 Math::UVec3 sizes; 2253 sizes.x = static_cast<uint32_t>(*ptr | (*(ptr + 1) << 8) | (*(ptr + 2)) << 16 | (*(ptr + 3)) << 24); 2255 sizes.y = static_cast<uint32_t>(*ptr | (*(ptr + 1) << 8) | (*(ptr + 2)) << 16 | (*(ptr + 3)) << 24); 2257 sizes.z = static_cast<uint32_t>(*ptr | (*(ptr + 1) << 8) | (*(ptr + 2)) << 16 | (*(ptr + 3)) << 24); 2259 return sizes;
|
Completed in 12 milliseconds