Home
last modified time | relevance | path

Searched refs:number_of_bytes (Results 1 – 6 of 6) sorted by relevance

/external/oss-fuzz/projects/pffft/
Dpffft_fuzzer.cc54 float* AllocatePffftBuffer(size_t number_of_bytes) { in AllocatePffftBuffer() argument
55 return static_cast<float*>(pffft_aligned_malloc(number_of_bytes)); in AllocatePffftBuffer()
71 const size_t number_of_bytes = fft_size * kSizeOfOneSample; in LLVMFuzzerTestOneInput() local
72 assert(number_of_bytes <= size); in LLVMFuzzerTestOneInput()
75 float* in = AllocatePffftBuffer(number_of_bytes); in LLVMFuzzerTestOneInput()
76 float* out = AllocatePffftBuffer(number_of_bytes); in LLVMFuzzerTestOneInput()
79 std::memcpy(in, reinterpret_cast<const float*>(data), number_of_bytes); in LLVMFuzzerTestOneInput()
/external/capstone/windows/
Dwinkernel_mm.c37 size_t number_of_bytes = 0; in cs_winkernel_malloc() local
42 if (!NT_SUCCESS(RtlSizeTAdd(size, FIELD_OFFSET(CS_WINKERNEL_MEMBLOCK, data), &number_of_bytes))) { in cs_winkernel_malloc()
46 NonPagedPool, number_of_bytes, CS_WINKERNEL_POOL_TAG); in cs_winkernel_malloc()
/external/capstone/contrib/windows_kernel/
Dlibc.cpp41 size_t number_of_bytes = 0; in __drv_allocatesMem() local
42 if (!NT_SUCCESS(RtlSizeTAdd(size, sizeof(MEMBLOCK), &number_of_bytes))){ in __drv_allocatesMem()
48 number_of_bytes, in __drv_allocatesMem()
/external/libabigail/src/
Dabg-elf-helpers.cc885 unsigned char number_of_bytes, in read_int_from_array_of_bytes() argument
892 ABG_ASSERT(number_of_bytes <= 8); in read_int_from_array_of_bytes()
893 ABG_ASSERT(number_of_bytes <= sizeof(T)); in read_int_from_array_of_bytes()
906 for (uint i = 1; i < number_of_bytes; ++i) in read_int_from_array_of_bytes()
916 for (uint i = 1; i < number_of_bytes; ++i) in read_int_from_array_of_bytes()
/external/tensorflow/tensorflow/stream_executor/
Dkernel.h430 void add_shared_bytes(size_t number_of_bytes) {
433 shared_memory_bytes_[number_of_shared_memory_arguments_] = number_of_bytes;
435 total_shared_memory_bytes_ += number_of_bytes;
/external/nos/host/generic/nugget/proto/nugget/app/protoapi/
Dtesting_api.proto340 uint32 number_of_bytes = 1; field