Home
last modified time | relevance | path

Searched refs:fMap (Results 1 – 8 of 8) sorted by relevance

/external/dng_sdk/source/
Ddng_gain_map.cpp33 const dng_gain_map &fMap; member in dng_gain_map_interpolator
101 : fMap (map) in dng_gain_map_interpolator()
125 fMap.Origin ().v) / fMap.Spacing ().v; in dng_gain_map_interpolator()
140 if (fMap.Points ().v < 1) in dng_gain_map_interpolator()
144 uint32 lastRow = static_cast<uint32> (fMap.Points ().v - 1); in dng_gain_map_interpolator()
180 return fMap.Entry (fRowIndex1, colIndex, fPlane) * (1.0f - fRowFract) + in InterpolateEntry()
181 fMap.Entry (fRowIndex2, colIndex, fPlane) * ( fRowFract); in InterpolateEntry()
191 fMap.Origin ().h) / fMap.Spacing ().h; in ResetColumn()
200 fResetColumn = (int32) ceil (fMap.Origin ().h / fScale.h - fOffset.h); in ResetColumn()
207 if (fMap.Points ().h < 1) in ResetColumn()
[all …]
/external/icu/icu4c/source/i18n/
Dcasetrn.cpp94 fMap(map) in UOBJECT_DEFINE_ABSTRACT_RTTI_IMPLEMENTATION()
111 fCsp(o.fCsp), fMap(o.fMap) in CaseMapTransliterator()
159 result=fMap(fCsp, c, utrans_rep_caseContextIterator, &csc, &s, "", &locCache); in handleTransliterate()
Dcasetrn.h86 UCaseMapFull *fMap; variable
/external/clang/test/CodeGenCXX/
D2006-03-01-GimplifyCrash.cpp9 PrefMapElem* fMap; in foo() local
10 if (fMap[0].fPrefId == 1) in foo()
/external/skia/src/core/
DSkRemote.cpp548 SkASSERT(fMap.count() == 0); in ~IDMap()
553 fMap.set(id, val); in set()
558 fMap.remove(id); in remove()
563 T* val = fMap.find(id); in find()
569 SkTHashMap<ID, T> fMap; member in SkRemote::Decoder::IDMap
579 SkASSERT(fMap.count() == 0); in ~ReffedIDMap()
584 fMap.set(id, SkSafeRef(val)); in set()
589 T** val = fMap.find(id); in remove()
592 fMap.remove(id); in remove()
597 T** val = fMap.find(id); in find()
[all …]
/external/skia/src/pdf/
DSkPDFFont.cpp674 if (fIndex >= fMap->count()) { in next()
677 return &((*fMap)[fIndex++]); in next()
681 fMap = &(map.fMap); in reset()
693 for (int i = 0; i < usage.fMap.count(); ++i) { in merge()
694 SkPDFGlyphSet* myUsage = getGlyphSetForFont(usage.fMap[i].fFont); in merge()
695 myUsage->merge(*(usage.fMap[i].fGlyphSet)); in merge()
700 for (int i = 0; i < fMap.count(); ++i) { in reset()
701 delete fMap[i].fGlyphSet; // Should not be nullptr. in reset()
703 fMap.reset(); in reset()
715 int index = fMap.count(); in getGlyphSetForFont()
[all …]
DSkPDFFont.h56 const SkTDArray<FontGlyphSetPair>* fMap;
69 SkTDArray<FontGlyphSetPair> fMap; variable
/external/llvm/lib/IR/
DAsmWriter.cpp582 ValueMap fMap; member in llvm::SlotTracker
883 fMap.clear(); // Simply discard the function level map in purgeFunction()
917 ValueMap::iterator FI = fMap.find(V); in getLocalSlot()
918 return FI == fMap.end() ? -1 : (int)FI->second; in getLocalSlot()
952 fMap[V] = DestSlot; in CreateFunctionSlot()