/external/qemu/android/utils/ |
D | ini.c | 37 int numPairs; member 46 for (nn = 0; nn < i->numPairs; nn++) { in iniFile_free() 95 if (i->numPairs >= i->maxPairs) { in iniFile_addPair() 103 pair = i->pairs + i->numPairs; in iniFile_addPair() 106 i->numPairs += 1; in iniFile_addPair() 115 for (nn = 0; nn < i->numPairs; nn++) { in iniFile_getPair() 136 return i ? i->numPairs : 0; in iniFile_getPairCount() 316 IniPair* pairEnd = pair + f->numPairs; in iniFile_saveToFileCommon() 355 if (index >= f->numPairs) { in iniFile_getEntry() 357 index, f->numPairs); in iniFile_getEntry()
|
/external/javassist/src/main/javassist/bytecode/ |
D | AnnotationsAttribute.java | 341 int numPairs = ByteArray.readU16bit(info, pos + 2); in annotation() local 342 return annotation(pos + 4, type, numPairs); in annotation() 345 int annotation(int pos, int type, int numPairs) throws Exception { in annotation() argument 346 for (int j = 0; j < numPairs; ++j) in annotation() 427 int annotation(int pos, int type, int numPairs) throws Exception { in annotation() argument 429 return super.annotation(pos, type, numPairs); in annotation() 495 int annotation(int pos, int type, int numPairs) throws Exception { in annotation() argument 496 writer.annotation(copyType(type), numPairs); in annotation() local 497 return super.annotation(pos, type, numPairs); in annotation() 617 int annotation(int pos, int type, int numPairs) throws Exception { in annotation() argument [all …]
|
/external/lzma/C/ |
D | LzmaEnc.c | 277 UInt32 numPairs; member 818 UInt32 lenRes = 0, numPairs; in ReadMatchDistances() local 820 numPairs = p->matchFinder.GetMatches(p->matchFinderObj, p->matches); in ReadMatchDistances() 822 printf("\n i = %d numPairs = %d ", ttt, numPairs / 2); in ReadMatchDistances() 826 for (i = 0; i < numPairs; i += 2) in ReadMatchDistances() 830 if (numPairs > 0) in ReadMatchDistances() 832 lenRes = p->matches[numPairs - 2]; in ReadMatchDistances() 836 UInt32 distance = p->matches[numPairs - 1] + 1; in ReadMatchDistances() 847 *numDistancePairsRes = numPairs; in ReadMatchDistances() 931 UInt32 numAvail, mainLen, numPairs, repMaxIndex, i, posState, lenEnd, len, cur; in GetOptimum() local [all …]
|
/external/chromium_org/third_party/ots/third_party/lzma_sdk/ |
D | LzmaEnc.c | 278 UInt32 numPairs; member 819 UInt32 lenRes = 0, numPairs; in ReadMatchDistances() local 821 numPairs = p->matchFinder.GetMatches(p->matchFinderObj, p->matches); in ReadMatchDistances() 823 printf("\n i = %d numPairs = %d ", ttt, numPairs / 2); in ReadMatchDistances() 827 for (i = 0; i < numPairs; i += 2) in ReadMatchDistances() 831 if (numPairs > 0) in ReadMatchDistances() 833 lenRes = p->matches[numPairs - 2]; in ReadMatchDistances() 837 UInt32 distance = p->matches[numPairs - 1] + 1; in ReadMatchDistances() 848 *numDistancePairsRes = numPairs; in ReadMatchDistances() 932 UInt32 numAvail, mainLen, numPairs, repMaxIndex, i, posState, lenEnd, len, cur; in GetOptimum() local [all …]
|
/external/chromium_org/third_party/lzma_sdk/ |
D | LzmaEnc.c | 277 UInt32 numPairs; member 818 UInt32 lenRes = 0, numPairs; in ReadMatchDistances() local 820 numPairs = p->matchFinder.GetMatches(p->matchFinderObj, p->matches); in ReadMatchDistances() 822 printf("\n i = %d numPairs = %d ", ttt, numPairs / 2); in ReadMatchDistances() 826 for (i = 0; i < numPairs; i += 2) in ReadMatchDistances() 830 if (numPairs > 0) in ReadMatchDistances() 832 lenRes = p->matches[numPairs - 2]; in ReadMatchDistances() 836 UInt32 distance = p->matches[numPairs - 1] + 1; in ReadMatchDistances() 847 *numDistancePairsRes = numPairs; in ReadMatchDistances() 931 UInt32 numAvail, mainLen, numPairs, repMaxIndex, i, posState, lenEnd, len, cur; in GetOptimum() local [all …]
|
/external/skia/gm/rebaseline_server/static/ |
D | loader.js | 72 var numPairs = unfilteredImagePairs.length; 73 if ((maxPairs > 0) && (maxPairs < numPairs)) { 74 numPairs = maxPairs; 77 if (!mergeIdenticalRows || (numPairs == 1)) { 80 for (var i = numPairs-1; i >= 0; i--) { 85 } else if (numPairs > 1) { 89 var imagePair = unfilteredImagePairs[numPairs-1]; 93 filteredImagePairs[numPairs-1] = imagePair; 94 for (var i = numPairs-2; i >= 0; i--) {
|
/external/chromium_org/third_party/skia/gm/rebaseline_server/static/ |
D | loader.js | 77 var numPairs = unfilteredImagePairs.length; 78 if ((maxPairs > 0) && (maxPairs < numPairs)) { 79 numPairs = maxPairs; 82 if (!mergeIdenticalRows || (numPairs == 1)) { 85 for (var i = numPairs-1; i >= 0; i--) { 90 } else if (numPairs > 1) { 94 var imagePair = unfilteredImagePairs[numPairs-1]; 98 filteredImagePairs[numPairs-1] = imagePair; 99 for (var i = numPairs-2; i >= 0; i--) {
|
D | live-loader.js | 83 var numPairs = unfilteredImagePairs.length; 84 if ((maxPairs > 0) && (maxPairs < numPairs)) { 85 numPairs = maxPairs; 88 if (!mergeIdenticalRows || (numPairs == 1)) { 91 for (var i = numPairs-1; i >= 0; i--) { 96 } else if (numPairs > 1) { 100 var imagePair = unfilteredImagePairs[numPairs-1]; 104 filteredImagePairs[numPairs-1] = imagePair; 105 for (var i = numPairs-2; i >= 0; i--) {
|
/external/lldb/source/Target/ |
D | PathMappingList.cpp | 153 unsigned int numPairs = m_pairs.size(); in Dump() local 158 for (index = 0; index < numPairs; ++index) in Dump() 164 if (pair_index < numPairs) in Dump()
|
/external/chromium_org/third_party/brotli/src/ |
D | ots-lzma.patch | 3182 + UInt32 numPairs; 3723 + UInt32 lenRes = 0, numPairs; 3725 + numPairs = p->matchFinder.GetMatches(p->matchFinderObj, p->matches); 3727 + printf("\n i = %d numPairs = %d ", ttt, numPairs / 2); 3731 + for (i = 0; i < numPairs; i += 2) 3735 + if (numPairs > 0) 3737 + lenRes = p->matches[numPairs - 2]; 3741 + UInt32 distance = p->matches[numPairs - 1] + 1; 3752 + *numDistancePairsRes = numPairs; 3836 + UInt32 numAvail, mainLen, numPairs, repMaxIndex, i, posState, lenEnd, len, cur; [all …]
|
/external/icu/icu4c/source/i18n/ |
D | collationiterator.cpp | 800 int32_t numPairs = (length + 1) / 2; in appendNumericSegmentCEs() local 801 uint32_t primary = numericPrimary | ((132 - 4 + numPairs) << 16); in appendNumericSegmentCEs()
|