Home
last modified time | relevance | path

Searched refs:NumEntries (Results 1 – 25 of 71) sorted by relevance

123

/external/giflib/
Dquantize.c36 unsigned int NumEntries; /* # of QuantizedColorType in linked list below */ member
103 NewColorSubdiv[i].Count = NewColorSubdiv[i].NumEntries = 0; in GifQuantizeBuffer()
124 NewColorSubdiv[0].NumEntries = NumOfEntries; /* Different sampled colors */ in GifQuantizeBuffer()
142 if ((j = NewColorSubdiv[i].NumEntries) > 0) { in GifQuantizeBuffer()
202 unsigned int i, j, Index = 0, NumEntries, MinColor, MaxColor; in SubdivColorMap() local
212 (NewColorSubdiv[i].NumEntries > 1)) { in SubdivColorMap()
229 NewColorSubdiv[Index].NumEntries); in SubdivColorMap()
233 j < NewColorSubdiv[Index].NumEntries && QuantizedColor != NULL; in SubdivColorMap()
248 qsort(SortArray, NewColorSubdiv[Index].NumEntries, in SubdivColorMap()
252 for (j = 0; j < NewColorSubdiv[Index].NumEntries - 1; j++) in SubdivColorMap()
[all …]
/external/swiftshader/third_party/LLVM/lib/Analysis/
DProfileInfoLoader.cpp45 unsigned NumEntries; in ReadProfilingBlock() local
46 if (fread(&NumEntries, sizeof(unsigned), 1, F) != 1) { in ReadProfilingBlock()
51 NumEntries = ByteSwap(NumEntries, ShouldByteSwap); in ReadProfilingBlock()
54 std::vector<unsigned> TempSpace(NumEntries); in ReadProfilingBlock()
57 if (fread(&TempSpace[0], sizeof(unsigned)*NumEntries, 1, F) != 1) { in ReadProfilingBlock()
65 if (Data.size() < NumEntries) in ReadProfilingBlock()
66 Data.resize(NumEntries, ProfileInfoLoader::Uncounted); in ReadProfilingBlock()
70 for (unsigned i = 0; i != NumEntries; ++i) { in ReadProfilingBlock()
74 for (unsigned i = 0; i != NumEntries; ++i) { in ReadProfilingBlock()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DOnDiskHashTable.h75 offset_type NumEntries; variable
127 ++NumEntries; in insert()
128 if (4 * NumEntries >= 3 * NumBuckets) in insert()
167 NumEntries <= 2 ? 1 : NextPowerOf2(NumEntries * 4 / 3); in Emit()
218 LE.write<offset_type>(NumEntries); in Emit()
226 NumEntries = 0; in OnDiskChainedHashTableGenerator()
276 const typename Info::offset_type NumEntries; variable
289 OnDiskChainedHashTable(offset_type NumBuckets, offset_type NumEntries,
293 : NumBuckets(NumBuckets), NumEntries(NumEntries), Buckets(Buckets), in NumBuckets()
309 offset_type NumEntries = in readNumBucketsAndEntries() local
[all …]
/external/llvm/include/llvm/Support/
DOnDiskHashTable.h76 offset_type NumEntries; variable
127 ++NumEntries; in insert()
128 if (4 * NumEntries >= 3 * NumBuckets) in insert()
167 NumEntries <= 2 ? 1 : NextPowerOf2(NumEntries * 4 / 3); in Emit()
218 LE.write<offset_type>(NumEntries); in Emit()
226 NumEntries = 0; in OnDiskChainedHashTableGenerator()
276 const typename Info::offset_type NumEntries; variable
289 OnDiskChainedHashTable(offset_type NumBuckets, offset_type NumEntries,
293 : NumBuckets(NumBuckets), NumEntries(NumEntries), Buckets(Buckets), in NumBuckets()
309 offset_type NumEntries = in readNumBucketsAndEntries() local
[all …]
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineWorklist.h53 void AddInitialGroup(Instruction *const *List, unsigned NumEntries) { in AddInitialGroup() argument
55 Worklist.reserve(NumEntries+16); in AddInitialGroup()
56 WorklistMap.resize(NumEntries); in AddInitialGroup()
57 DEBUG(errs() << "IC: ADDING: " << NumEntries << " instrs to worklist\n"); in AddInitialGroup()
58 for (; NumEntries; --NumEntries) { in AddInitialGroup()
59 Instruction *I = List[NumEntries-1]; in AddInitialGroup()
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DDenseMap.h44 unsigned NumEntries; variable
98 bool empty() const { return NumEntries == 0; } in empty()
99 unsigned size() const { return NumEntries; } in size()
108 if (NumEntries == 0 && NumTombstones == 0) return; in clear()
112 if (NumEntries * 4 < NumBuckets && NumBuckets > 64) { in clear()
122 --NumEntries; in clear()
127 assert(NumEntries == 0 && "Node count imbalance!"); in clear()
189 --NumEntries; in erase()
197 --NumEntries; in erase()
204 std::swap(NumEntries, RHS.NumEntries); in swap()
[all …]
/external/llvm/include/llvm/ADT/
DDenseMap.h86 void reserve(size_type NumEntries) { in reserve() argument
87 auto NumBuckets = getMinBucketToReserveForEntries(NumEntries); in reserve()
105 unsigned NumEntries = getNumEntries(); in clear() local
110 --NumEntries; in clear()
115 assert(NumEntries == 0 && "Node count imbalance!"); in clear()
312 unsigned getMinBucketToReserveForEntries(unsigned NumEntries) { in getMinBucketToReserveForEntries() argument
314 if (NumEntries == 0) in getMinBucketToReserveForEntries()
318 return NextPowerOf2(NumEntries * 4 / 3 + 1); in getMinBucketToReserveForEntries()
593 unsigned NumEntries; variable
627 std::swap(NumEntries, RHS.NumEntries); in swap()
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DDenseMap.h87 void reserve(size_type NumEntries) { in reserve() argument
88 auto NumBuckets = getMinBucketToReserveForEntries(NumEntries); in reserve()
106 unsigned NumEntries = getNumEntries(); in clear() local
111 --NumEntries; in clear()
116 assert(NumEntries == 0 && "Node count imbalance!"); in clear()
327 unsigned getMinBucketToReserveForEntries(unsigned NumEntries) { in getMinBucketToReserveForEntries() argument
329 if (NumEntries == 0) in getMinBucketToReserveForEntries()
333 return NextPowerOf2(NumEntries * 4 / 3 + 1); in getMinBucketToReserveForEntries()
591 unsigned NumEntries; variable
625 std::swap(NumEntries, RHS.NumEntries); in swap()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DDenseMap.h100 void reserve(size_type NumEntries) { in reserve() argument
101 auto NumBuckets = getMinBucketToReserveForEntries(NumEntries); in reserve()
124 unsigned NumEntries = getNumEntries(); in clear() local
129 --NumEntries; in clear()
134 assert(NumEntries == 0 && "Node count imbalance!"); in clear()
352 unsigned getMinBucketToReserveForEntries(unsigned NumEntries) { in getMinBucketToReserveForEntries() argument
354 if (NumEntries == 0) in getMinBucketToReserveForEntries()
358 return NextPowerOf2(NumEntries * 4 / 3 + 1); in getMinBucketToReserveForEntries()
654 unsigned NumEntries; variable
688 std::swap(NumEntries, RHS.NumEntries); in swap()
[all …]
DMapVector.h65 void reserve(size_type NumEntries) { in reserve() argument
66 Map.reserve(NumEntries); in reserve()
67 Vector.reserve(NumEntries); in reserve()
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
DPPCFrameLowering.h114 getCalleeSavedSpillSlots(unsigned &NumEntries) const { in getCalleeSavedSpillSlots() argument
116 NumEntries = 1; in getCalleeSavedSpillSlots()
128 NumEntries = 0; in getCalleeSavedSpillSlots()
308 NumEntries = array_lengthof(Offsets64); in getCalleeSavedSpillSlots()
312 NumEntries = array_lengthof(Offsets); in getCalleeSavedSpillSlots()
/external/google-breakpad/src/common/
Dsimple_string_dictionary.h57 template <size_t KeySize, size_t ValueSize, size_t NumEntries>
63 static const size_t num_entries = NumEntries;
251 Entry entries_[NumEntries];
/external/llvm/lib/Support/
DStringMap.cpp22 static unsigned getMinBucketToReserveForEntries(unsigned NumEntries) { in getMinBucketToReserveForEntries() argument
24 if (NumEntries == 0) in getMinBucketToReserveForEntries()
28 return NextPowerOf2(NumEntries * 4 / 3 + 1); in getMinBucketToReserveForEntries()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DStringMap.cpp25 static unsigned getMinBucketToReserveForEntries(unsigned NumEntries) { in getMinBucketToReserveForEntries() argument
27 if (NumEntries == 0) in getMinBucketToReserveForEntries()
31 return NextPowerOf2(NumEntries * 4 / 3 + 1); in getMinBucketToReserveForEntries()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DStringMap.cpp24 static unsigned getMinBucketToReserveForEntries(unsigned NumEntries) { in getMinBucketToReserveForEntries() argument
26 if (NumEntries == 0) in getMinBucketToReserveForEntries()
30 return NextPowerOf2(NumEntries * 4 / 3 + 1); in getMinBucketToReserveForEntries()
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
DSPUTargetMachine.cpp30 SPUFrameLowering::getCalleeSaveSpillSlots(unsigned &NumEntries) const { in getCalleeSaveSpillSlots()
31 NumEntries = 1; in getCalleeSaveSpillSlots()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DDwarfCFIEHPrinter.h148 unsigned NumEntries = 0; in printEHFrameHdr() local
150 while (Offset + 8 <= EHFrameHdrSize && NumEntries < FDECount) { in printEHFrameHdr()
151 DictScope D(W, std::string("entry ") + std::to_string(NumEntries)); in printEHFrameHdr()
162 ++NumEntries; in printEHFrameHdr()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
DDispatchStage.h70 bool isAvailable(unsigned NumEntries) const { in isAvailable() argument
71 return NumEntries <= AvailableEntries || AvailableEntries == DispatchWidth; in isAvailable()
/external/swiftshader/third_party/LLVM/include/llvm/Target/
DTargetFrameLowering.h99 getCalleeSavedSpillSlots(unsigned &NumEntries) const { in getCalleeSavedSpillSlots() argument
100 NumEntries = 0; in getCalleeSavedSpillSlots()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/OProfileJIT/
DOProfileWrapper.cpp227 size_t NumEntries, in op_write_debug_line_info() argument
233 return WriteDebugLineInfoFunc(Agent, Code, NumEntries, Info); in op_write_debug_line_info()
/external/llvm/lib/ExecutionEngine/OProfileJIT/
DOProfileWrapper.cpp226 size_t NumEntries, in op_write_debug_line_info() argument
232 return WriteDebugLineInfoFunc(Agent, Code, NumEntries, Info); in op_write_debug_line_info()
/external/llvm/test/tools/llvm-cxxdump/
Deh.test119 COFF-I386: __CTA1?AW4E@@[NumEntries]: 1
121 COFF-I386: __CTA1PQS@@H[NumEntries]: 1
123 COFF-I386: __CTA2PAW4E@@[NumEntries]: 2
126 COFF-I386: __CTA2PAX[NumEntries]: 2
129 COFF-I386: __CTA3?AUM@@[NumEntries]: 3
133 COFF-I386: __CTA3?AUS@@[NumEntries]: 3
137 COFF-I386: __CTA4PAUS@@[NumEntries]: 4
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-cxxdump/
Deh.test119 COFF-I386: __CTA1?AW4E@@[NumEntries]: 1
121 COFF-I386: __CTA1PQS@@H[NumEntries]: 1
123 COFF-I386: __CTA2PAW4E@@[NumEntries]: 2
126 COFF-I386: __CTA2PAX[NumEntries]: 2
129 COFF-I386: __CTA3?AUM@@[NumEntries]: 3
133 COFF-I386: __CTA3?AUS@@[NumEntries]: 3
137 COFF-I386: __CTA4PAUS@@[NumEntries]: 4
/external/llvm/include/llvm/Target/
DTargetFrameLowering.h137 getCalleeSavedSpillSlots(unsigned &NumEntries) const { in getCalleeSavedSpillSlots() argument
138 NumEntries = 0; in getCalleeSavedSpillSlots()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DTargetFrameLowering.h137 getCalleeSavedSpillSlots(unsigned &NumEntries) const { in getCalleeSavedSpillSlots() argument
138 NumEntries = 0; in getCalleeSavedSpillSlots()

123