HomeSort by relevance Sort by last modified time
    Searched refs:MaxSize (Results 1 - 25 of 116) sorted by null

1 2 3 4 5

  /external/compiler-rt/test/profile/Inputs/
instrprof-merge-match.c 19 extern uint64_t libEntry(char *Buffer, uint64_t MaxSize);
22 const uint64_t MaxSize = 10000;
23 static char Buffer[MaxSize];
26 if (Size > MaxSize)
40 memset(Buffer, 0, MaxSize);
43 Size = libEntry(Buffer, MaxSize);
instrprof-merge-match-lib.c 20 uint64_t libEntry(char *Buffer, uint64_t MaxSize) {
23 if (Size > MaxSize)
  /prebuilts/clang/host/linux-x86/clang-3859424/prebuilt_include/llvm/lib/Fuzzer/
FuzzerMutate.h 32 size_t Mutate_Custom(uint8_t *Data, size_t Size, size_t MaxSize);
34 size_t Mutate_CustomCrossOver(uint8_t *Data, size_t Size, size_t MaxSize);
36 size_t Mutate_ShuffleBytes(uint8_t *Data, size_t Size, size_t MaxSize);
38 size_t Mutate_EraseBytes(uint8_t *Data, size_t Size, size_t MaxSize);
40 size_t Mutate_InsertByte(uint8_t *Data, size_t Size, size_t MaxSize);
42 size_t Mutate_InsertRepeatedBytes(uint8_t *Data, size_t Size, size_t MaxSize);
44 size_t Mutate_ChangeByte(uint8_t *Data, size_t Size, size_t MaxSize);
46 size_t Mutate_ChangeBit(uint8_t *Data, size_t Size, size_t MaxSize);
48 size_t Mutate_CopyPart(uint8_t *Data, size_t Size, size_t MaxSize);
52 size_t MaxSize);
    [all...]
FuzzerInterface.h 43 // Returns the new size, which is not greater than MaxSize.
45 size_t LLVMFuzzerCustomMutator(uint8_t *Data, size_t Size, size_t MaxSize,
60 // Returns the new size, which is not greater than MaxSize.
61 size_t LLVMFuzzerMutate(uint8_t *Data, size_t Size, size_t MaxSize);
  /external/compiler-rt/test/profile/
instrprof-without-libc.c 27 const uint64_t MaxSize = 10000;
28 static char Buffer[MaxSize];
31 if (Size > MaxSize)
instrprof-merge.c 40 const uint64_t MaxSize = 10000;
41 static char Buffer[MaxSize];
44 if (Size > MaxSize)
  /external/clang/test/CXX/temp/temp.spec/temp.inst/
p11.cpp 6 return T::MaxSize; // expected-error {{'int' cannot be used prior to '::'}}
  /external/llvm/lib/Fuzzer/
FuzzerMutate.cpp 71 size_t MaxSize) {
72 return EF->LLVMFuzzerCustomMutator(Data, Size, MaxSize, Rand.Rand());
76 size_t MaxSize) {
83 MutateInPlaceHere.resize(MaxSize);
89 assert(NewSize <= MaxSize && "CustomCrossOver returned overisized unit");
95 size_t MaxSize) {
107 size_t MaxSize) {
117 size_t MaxSize) {
118 if (Size == MaxSize) return 0;
127 size_t MaxSize) {
    [all...]
FuzzerInterface.h 43 // Returns the new size, which is not greater than MaxSize.
45 size_t LLVMFuzzerCustomMutator(uint8_t *Data, size_t Size, size_t MaxSize,
60 // Returns the new size, which is not greater than MaxSize.
61 size_t LLVMFuzzerMutate(uint8_t *Data, size_t Size, size_t MaxSize);
FuzzerInternal.h 87 Unit FileToVector(const std::string &Path, size_t MaxSize = 0);
89 long *Epoch, size_t MaxSize);
251 size_t Mutate_Custom(uint8_t *Data, size_t Size, size_t MaxSize);
253 size_t Mutate_CustomCrossOver(uint8_t *Data, size_t Size, size_t MaxSize);
255 size_t Mutate_ShuffleBytes(uint8_t *Data, size_t Size, size_t MaxSize);
257 size_t Mutate_EraseByte(uint8_t *Data, size_t Size, size_t MaxSize);
259 size_t Mutate_InsertByte(uint8_t *Data, size_t Size, size_t MaxSize);
261 size_t Mutate_ChangeByte(uint8_t *Data, size_t Size, size_t MaxSize);
263 size_t Mutate_ChangeBit(uint8_t *Data, size_t Size, size_t MaxSize);
267 size_t MaxSize);
    [all...]
FuzzerIO.cpp 63 Unit FileToVector(const std::string &Path, size_t MaxSize) {
72 if (MaxSize)
73 FileLen = std::min(FileLen, MaxSize);
100 long *Epoch, size_t MaxSize) {
111 V->push_back(FileToVector(X, MaxSize));
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
OnigurumaUefiPort.h 55 #define strlen_s(String,MaxSize) AsciiStrnLenS (String, MaxSize)
56 #define strcat_s(Dest,MaxSize,Src) AsciiStrCatS (Dest, MaxSize, Src)
57 #define strncpy_s(Dest,MaxSize,Src,Length) AsciiStrnCpyS (Dest, MaxSize, Src, Length)
  /external/llvm/lib/Fuzzer/test/
CustomMutatorTest.cpp 31 size_t MaxSize, unsigned int Seed) {
37 return LLVMFuzzerMutate(Data, Size, MaxSize);
  /system/chre/util/tests/
heap_test.cc 27 const size_t MaxSize = 1000;
28 std::array<int, MaxSize> array;
29 std::array<int, MaxSize> array_sorted;
31 for (size_t i = 0; i < MaxSize; ++i) {
37 for (size_t s = 1; s < MaxSize + 1; ++s) {
67 const size_t MaxSize = 1000;
68 std::array<int, MaxSize> array;
69 std::array<int, MaxSize> array_sorted;
71 for (size_t i = 0; i < MaxSize; ++i) {
76 for (size_t s = 1; s < MaxSize + 1; ++s)
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Library/SerializeVariablesLib/
SerializeVariablesLib.c 41 @param[in] MaxSize - Max allowable size for the variable data
59 IN UINTN MaxSize,
78 if (Offset > MaxSize) {
84 if (Offset > MaxSize) {
90 if (Offset > MaxSize) {
96 if (Offset > MaxSize) {
102 if (Offset > MaxSize) {
108 if (Offset > MaxSize) {
125 @param[in] MaxSize - Size of Buffer in bytes
136 IN UINTN MaxSize
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/TcgDxe/
TpmComm.h 23 @param[in] MaxSize Maximum size of the Event Log.
35 IN UINTN MaxSize,
TpmComm.c 130 @param[in] MaxSize Maximum size of the Event Log.
142 IN UINTN MaxSize,
157 if (NewLogSize > MaxSize - *LogSize) {
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 68 MaxSize = MatrixType::MaxRowsAtCompileTime,
69 MaxSizeMinusOne = MaxSize == Dynamic ? Dynamic : MaxSize - 1
270 typedef Matrix<Scalar, 1, Size, Options | RowMajor, 1, MaxSize> VectorType;
  /external/mesa3d/src/egl/main/
eglarray.c 45 new_size = array->MaxSize;
57 array->MaxSize = new_size;
74 array->MaxSize = (init_size > 0) ? init_size : 1;
107 if (array->Size >= array->MaxSize && !_eglGrowArray(array))
eglarray.h 41 EGLint MaxSize;
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Sdio/Dxe/SDMediaDeviceDxe/
CEATABlockIo.c 336 UINT64 MaxSize;
380 MaxSize = *(UINT64*)(CardData->IndentifyDeviceData.MaximumLBA);
381 MaxSize = MultU64x32 (MaxSize, 512);
384 CardData->BlockNumber = DivU64x32Remainder (MaxSize, CardData->BlockIoMedia.BlockSize, &Remainder);
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
crc.c 121 IN UINTN MaxSize,
140 return CheckCrcAltSize (MaxSize, Hdr->HeaderSize, Hdr);
148 IN UINTN MaxSize,
178 if (MaxSize && Size > MaxSize) {
179 DEBUG((D_ERROR, "CheckCrc32: Size > MaxSize\n"));
  /device/linaro/bootloader/OpenPlatformPkg/Chips/TexasInstruments/Omap35xx/LcdGraphicsOutputDxe/
LcdGraphicsOutputDxe.c 113 UINTN MaxSize;
115 MaxSize = 0x500000;
116 *VramSize = MaxSize;
119 Status = gBS->AllocatePages (AllocateAnyPages, EfiBootServicesData, EFI_SIZE_TO_PAGES((MaxSize)), VramBaseAddress);
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
Pool.c 40 UINT64 MaxSize;
61 for (Index = 0, MaxSize = SIZE_256KB - EFI_PAGE_SIZE; Index < SmramRangeCount; Index++) {
71 if (SmramRanges[Index].PhysicalSize >= MaxSize) {
72 MaxSize = SmramRanges[Index].PhysicalSize;
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Protocol/
VarCheck.h 63 UINTN MaxSize;

Completed in 1488 milliseconds

1 2 3 4 5