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

1 2

  /external/compiler-rt/test/profile/
instrprof-without-libc.c 25 const uint64_t MaxSize = 10000;
26 static char Buffer[MaxSize];
29 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/test/
UserSuppliedFuzzerTest.cpp 35 virtual size_t Mutate(uint8_t *Data, size_t Size, size_t MaxSize) {
36 assert(MaxSize > sizeof(kMagic));
40 memcpy(Data, &kMagic, std::min(MaxSize, sizeof(kMagic)));
42 Data + sizeof(kMagic), Size - sizeof(kMagic), MaxSize - sizeof(kMagic));
  /external/llvm/lib/Fuzzer/
FuzzerInterface.h 79 size_t Mutate_ShuffleBytes(uint8_t *Data, size_t Size, size_t MaxSize);
81 size_t Mutate_EraseByte(uint8_t *Data, size_t Size, size_t MaxSize);
83 size_t Mutate_InsertByte(uint8_t *Data, size_t Size, size_t MaxSize);
85 size_t Mutate_ChangeByte(uint8_t *Data, size_t Size, size_t MaxSize);
87 size_t Mutate_ChangeBit(uint8_t *Data, size_t Size, size_t MaxSize);
91 size_t MaxSize);
94 size_t Mutate_ChangeASCIIInteger(uint8_t *Data, size_t Size, size_t MaxSize);
97 size_t Mutate_CrossOver(uint8_t *Data, size_t Size, size_t MaxSize);
100 /// Returns the new size of data which could be up to MaxSize.
101 size_t Mutate(uint8_t *Data, size_t Size, size_t MaxSize);
    [all...]
FuzzerMutate.cpp 69 size_t MaxSize) {
80 size_t MaxSize) {
90 size_t MaxSize) {
91 if (Size == MaxSize) return 0;
100 size_t MaxSize) {
107 size_t MaxSize) {
115 size_t MaxSize) {
120 if (Size + Word.size() > MaxSize) return 0;
128 size_t MaxSize) {
161 size_t MaxSize) {
    [all...]
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 68 MaxSize = MatrixType::MaxRowsAtCompileTime,
69 MaxSizeMinusOne = MaxSize == Dynamic ? Dynamic : MaxSize - 1
268 typedef Matrix<Scalar, 1, Size, Options | RowMajor, 1, MaxSize> VectorType;
Tridiagonalization.h 76 MaxSize = MatrixType::MaxRowsAtCompileTime,
77 MaxSizeMinusOne = MaxSize == Dynamic ? Dynamic : (MaxSize > 1 ? MaxSize - 1 : 1)
  /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;
  /external/giflib/
quantize.c 201 int MaxSize;
208 MaxSize = -1;
211 if ((((int)NewColorSubdiv[i].RGBWidth[j]) > MaxSize) &&
213 MaxSize = NewColorSubdiv[i].RGBWidth[j];
220 if (MaxSize == -1)
  /external/mesa3d/src/mesa/main/
points.c 153 if (ctx->Point.MaxSize == params[0])
156 ctx->Point.MaxSize = params[0];
248 ctx->Point.MaxSize
  /external/eigen/Eigen/src/Core/
GeneralProduct.h 47 template<int Size, int MaxSize> struct product_size_category
49 enum { is_large = MaxSize == Dynamic ||
370 template<typename Scalar,int Size,int MaxSize,bool Cond> struct gemv_static_vector_if;
372 template<typename Scalar,int Size,int MaxSize>
373 struct gemv_static_vector_if<Scalar,Size,MaxSize,false>
384 template<typename Scalar,int Size,int MaxSize>
385 struct gemv_static_vector_if<Scalar,Size,MaxSize,true>
388 internal::plain_array<Scalar,EIGEN_SIZE_MIN_PREFER_FIXED(Size,MaxSize),0> m_data;
397 internal::plain_array<Scalar,EIGEN_SIZE_MIN_PREFER_FIXED(Size,MaxSize)+(ForceAlignment?PacketSize:0),0> m_data;
  /external/llvm/lib/TableGen/
SetTheory.cpp 153 unsigned MaxSize = 0;
156 MaxSize = std::max(MaxSize, unsigned(Args[i].size()));
159 for (unsigned n = 0; n != MaxSize; ++n)
  /external/llvm/lib/Target/Hexagon/
HexagonStoreWidening.cpp 95 InstrGroup &OG, unsigned &TotalSize, unsigned MaxSize);
304 /// of size not exceeding MaxSize. The selected sequence will be recorded
310 unsigned MaxSize) {
328 if (SizeAccum >= MaxSize)
354 // does not exceed the limit (MaxSize).
365 if (SizeAccum + S2Size > std::min(MaxSize, Alignment))
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf_state.c 276 ctx->Point.MaxSize)), 1, 255) * (1<<3);
gen6_sf_state.c 243 point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize);
gen7_sf_state.c 278 point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize);
  /external/mesa3d/src/mesa/state_tracker/
st_atom_rasterizer.c 210 ctx->Point.MaxSize);
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 117 // is not performed. MaxSize is turned into unswitching quota for
120 // processed, so that MaxSize will return to its previous
121 // value. So in most cases MaxSize will equal the Threshold flag
123 // MaxSize will have a smaller value while processing nested loops
126 // FIXME: The way that MaxSize works is subtle and depends on the
129 // way of doing what MaxSize does.
130 unsigned MaxSize;
135 MaxSize(Threshold) {}
297 Props.CanBeUnswitchedCount = MaxSize / (Props.SizeEstimation);
299 MaxSize -= Props.SizeEstimation * Props.CanBeUnswitchedCount
    [all...]
  /external/mesa3d/src/mesa/drivers/common/
meta.c 210 GLsizei MaxSize; /**< Max possible texture size */
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_points.c 68 size = CLAMP(size, ctx->Point.MinSize, ctx->Point.MaxSize);
547 ctx->Point.MaxSize);
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 488 APInt MaxSize = Arg->getValue().zextOrSelf(IntTyBits);
489 if (Size.ugt(MaxSize))
490 Size = MaxSize + 1;
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 585 static bool isObjectSizeLessThanOrEq(Value *V, uint64_t MaxSize,
616 // If we know how big this object is, and it is less than MaxSize, continue
629 if ((CS->getValue().zextOrSelf(128)*APInt(128, TypeSize)).ugt(MaxSize))
639 if (InitSize > MaxSize)
    [all...]
  /external/mesa3d/src/mesa/program/
prog_statevars.c 270 value[2] = ctx->Point.MaxSize;
495 value[2] = ctx->Point.MaxSize <= maxImplSize ? ctx->Point.MaxSize : maxImplSize;
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
document.h     [all...]

Completed in 942 milliseconds

1 2