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

1 2 3 4 5 6 7 8 910

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/
StringParse.c 75 STRING_PACK_RECORD *Rec;
77 for (Rec = mStringPacks; Rec != NULL; Rec = Rec->Next) {
78 if (Rec->Handle == Handle) {
79 *StringPack = Rec->StringPack;
80 *StringPackSize = Rec->StringPackSize;
81 *NumStringPacks = Rec->NumStringPacks;
115 STRING_PACK_RECORD *Rec;
    [all...]
  /external/skia/src/core/
SkResourceCache.h 74 struct Rec {
77 Rec() {}
78 virtual ~Rec() {}
85 // Called if the cache needs to purge/remove/delete the Rec. Default returns true.
90 // A rec is first created/initialized, and then added to the cache. As part of the add(),
91 // the cache will callback into the rec with postAddInstall, passing in whatever payload
95 // the new rec (if an existing rec in the cache has the same key and cannot be purged).
96 // If the new rec will be deleted during add, the pre-existing one (with the same key)
106 Rec* fNext
    [all...]
SkCubicMap.h 30 struct Rec {
37 Rec fXTable[kTableCount];
SkMetaData.cpp 47 Rec* rec = fRec; local
48 while (rec) {
49 if (kPtr_Type == rec->fType) {
50 PtrPair* pair = (PtrPair*)rec->data();
55 Rec* next = rec->fNext;
56 Rec::Free(rec);
57 rec = next
66 const Rec* rec = src.fRec; local
121 Rec* rec = Rec::Alloc(sizeof(Rec) + dataSize * count + len + 1); local
148 const Rec* rec = this->find(name, kS32_Type); local
161 const Rec* rec = this->find(name, kScalar_Type); local
174 const Rec* rec = this->find(name, kScalar_Type); local
187 const Rec* rec = this->find(name, kPtr_Type); local
204 const Rec* rec = this->find(name, kString_Type); local
211 const Rec* rec = this->find(name, kBool_Type); local
223 const Rec* rec = this->find(name, kData_Type); local
236 const Rec* rec = fRec; local
247 Rec* rec = fRec; local
    [all...]
SkBitmapCache.h 53 class Rec;
54 struct RecDeleter { void operator()(Rec* r) { PrivateDeleteRec(r); } };
55 typedef std::unique_ptr<Rec, RecDeleter> RecPtr;
61 static void PrivateDeleteRec(Rec*);
  /external/skqp/src/core/
SkResourceCache.h 74 struct Rec {
77 Rec() {}
78 virtual ~Rec() {}
85 // Called if the cache needs to purge/remove/delete the Rec. Default returns true.
90 // A rec is first created/initialized, and then added to the cache. As part of the add(),
91 // the cache will callback into the rec with postAddInstall, passing in whatever payload
95 // the new rec (if an existing rec in the cache has the same key and cannot be purged).
96 // If the new rec will be deleted during add, the pre-existing one (with the same key)
106 Rec* fNext
    [all...]
SkCubicMap.h 30 struct Rec {
37 Rec fXTable[kTableCount];
SkMetaData.cpp 47 Rec* rec = fRec; local
48 while (rec) {
49 if (kPtr_Type == rec->fType) {
50 PtrPair* pair = (PtrPair*)rec->data();
55 Rec* next = rec->fNext;
56 Rec::Free(rec);
57 rec = next
66 const Rec* rec = src.fRec; local
121 Rec* rec = Rec::Alloc(sizeof(Rec) + dataSize * count + len + 1); local
148 const Rec* rec = this->find(name, kS32_Type); local
161 const Rec* rec = this->find(name, kScalar_Type); local
174 const Rec* rec = this->find(name, kScalar_Type); local
187 const Rec* rec = this->find(name, kPtr_Type); local
204 const Rec* rec = this->find(name, kString_Type); local
211 const Rec* rec = this->find(name, kBool_Type); local
223 const Rec* rec = this->find(name, kData_Type); local
236 const Rec* rec = fRec; local
247 Rec* rec = fRec; local
    [all...]
  /external/skia/include/core/
SkRasterHandleAllocator.h 43 struct Rec {
55 * is desired to give clients access to those pixels. The rec also contains a proc and context
62 virtual bool allocHandle(const SkImageInfo&, Rec*) = 0;
75 * If rec is non-null, then it will be used as the base-layer of pixels/handle.
76 * If rec is null, then the allocator will be called for the base-layer as well.
79 const SkImageInfo&, const Rec* rec = nullptr);
  /external/skqp/include/core/
SkRasterHandleAllocator.h 43 struct Rec {
55 * is desired to give clients access to those pixels. The rec also contains a proc and context
62 virtual bool allocHandle(const SkImageInfo&, Rec*) = 0;
75 * If rec is non-null, then it will be used as the base-layer of pixels/handle.
76 * If rec is null, then the allocator will be called for the base-layer as well.
79 const SkImageInfo&, const Rec* rec = nullptr);
  /external/skia/include/effects/
SkLayerDrawLooper.h 76 bool asABlurShadow(BlurShadowRec* rec) const override;
91 struct Rec {
92 Rec* fNext;
96 Rec* fRecs;
108 Rec* fCurrRec;
148 Rec* fRecs;
149 Rec* fTopRec;
  /external/skqp/include/effects/
SkLayerDrawLooper.h 76 bool asABlurShadow(BlurShadowRec* rec) const override;
91 struct Rec {
92 Rec* fNext;
96 Rec* fRecs;
108 Rec* fCurrRec;
148 Rec* fRecs;
149 Rec* fTopRec;
  /external/llvm/lib/DebugInfo/PDB/Raw/
TpiStream.cpp 68 template <typename T> static bool isAnonymous(T &Rec) {
69 StringRef Name = Rec.getName();
76 static uint32_t getTpiHash(T &Rec, const CVRecord<TypeLeafKind> &RawRec) {
77 auto Opts = static_cast<uint16_t>(Rec.getOptions());
83 bool IsAnon = UniqueName && isAnonymous(Rec);
86 return hashStringV1(Rec.getName());
88 return hashStringV1(Rec.getUniqueName());
99 Error visitUdtSourceLine(UdtSourceLineRecord &Rec) override {
100 return verifySourceLine(Rec);
103 Error visitUdtModSourceLine(UdtModSourceLineRecord &Rec) override
    [all...]
  /external/skia/src/gpu/
GrWindowRectangles.h 20 ~GrWindowRectangles() { SkSafeUnref(this->rec()); }
39 struct Rec;
41 const Rec* rec() const { return fCount <= kNumLocalWindows ? nullptr : fRec; } function in class:GrWindowRectangles
46 Rec* fRec; // If fCount > kNumLocalWindows.
50 struct GrWindowRectangles::Rec : public GrNonAtomicRef<Rec> {
51 Rec(const SkIRect* windows, int numWindows) {
55 Rec() = default;
65 SkSafeUnref(this->rec());
    [all...]
  /external/skqp/src/gpu/
GrWindowRectangles.h 20 ~GrWindowRectangles() { SkSafeUnref(this->rec()); }
39 struct Rec;
41 const Rec* rec() const { return fCount <= kNumLocalWindows ? nullptr : fRec; } function in class:GrWindowRectangles
46 Rec* fRec; // If fCount > kNumLocalWindows.
50 struct GrWindowRectangles::Rec : public GrNonAtomicRef<Rec> {
51 Rec(const SkIRect* windows, int numWindows) {
55 Rec() = default;
65 SkSafeUnref(this->rec());
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
TpiHashing.h 50 codeview::UdtSourceLineRecord &Rec);
52 codeview::UdtModSourceLineRecord &Rec);
53 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::ClassRecord &Rec);
54 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::EnumRecord &Rec);
55 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::UnionRecord &Rec);
65 codeview::UdtSourceLineRecord &Rec) override;
67 codeview::UdtModSourceLineRecord &Rec) override;
69 codeview::ClassRecord &Rec) override;
71 codeview::EnumRecord &Rec) override;
73 codeview::UnionRecord &Rec) override
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/PDB/Native/
TpiHashing.h 50 codeview::UdtSourceLineRecord &Rec);
52 codeview::UdtModSourceLineRecord &Rec);
53 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::ClassRecord &Rec);
54 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::EnumRecord &Rec);
55 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::UnionRecord &Rec);
65 codeview::UdtSourceLineRecord &Rec) override;
67 codeview::UdtModSourceLineRecord &Rec) override;
69 codeview::ClassRecord &Rec) override;
71 codeview::EnumRecord &Rec) override;
73 codeview::UnionRecord &Rec) override
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/PDB/Native/
TpiHashing.h 50 codeview::UdtSourceLineRecord &Rec);
52 codeview::UdtModSourceLineRecord &Rec);
53 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::ClassRecord &Rec);
54 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::EnumRecord &Rec);
55 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::UnionRecord &Rec);
65 codeview::UdtSourceLineRecord &Rec) override;
67 codeview::UdtModSourceLineRecord &Rec) override;
69 codeview::ClassRecord &Rec) override;
71 codeview::EnumRecord &Rec) override;
73 codeview::UnionRecord &Rec) override
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
TpiHashing.h 50 codeview::UdtSourceLineRecord &Rec);
52 codeview::UdtModSourceLineRecord &Rec);
53 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::ClassRecord &Rec);
54 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::EnumRecord &Rec);
55 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::UnionRecord &Rec);
65 codeview::UdtSourceLineRecord &Rec) override;
67 codeview::UdtModSourceLineRecord &Rec) override;
69 codeview::ClassRecord &Rec) override;
71 codeview::EnumRecord &Rec) override;
73 codeview::UnionRecord &Rec) override
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/PDB/Native/
TpiHashing.h 50 codeview::UdtSourceLineRecord &Rec);
52 codeview::UdtModSourceLineRecord &Rec);
53 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::ClassRecord &Rec);
54 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::EnumRecord &Rec);
55 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::UnionRecord &Rec);
65 codeview::UdtSourceLineRecord &Rec) override;
67 codeview::UdtModSourceLineRecord &Rec) override;
69 codeview::ClassRecord &Rec) override;
71 codeview::EnumRecord &Rec) override;
73 codeview::UnionRecord &Rec) override
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/PDB/Native/
TpiHashing.h 50 codeview::UdtSourceLineRecord &Rec);
52 codeview::UdtModSourceLineRecord &Rec);
53 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::ClassRecord &Rec);
54 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::EnumRecord &Rec);
55 void visitKnownRecordImpl(codeview::CVType &CVR, codeview::UnionRecord &Rec);
65 codeview::UdtSourceLineRecord &Rec) override;
67 codeview::UdtModSourceLineRecord &Rec) override;
69 codeview::ClassRecord &Rec) override;
71 codeview::EnumRecord &Rec) override;
73 codeview::UnionRecord &Rec) override
    [all...]
  /external/skqp/tools/viewer/
SkottieSlide.h 57 struct Rec {
61 explicit Rec(sk_sp<AnimationWrapper>);
62 Rec(Rec&& o);
68 SkTArray<Rec> fAnims;
  /external/skia/include/views/
SkTouchGesture.h 58 struct Rec {
65 SkTDArray<Rec> fTouches;
81 float computePinch(const Rec&, const Rec&);
  /external/skia/tools/viewer/
SlideDir.h 42 struct Rec;
47 const Rec* findCell(float x, float y) const;
53 SkTArray<Rec, true> fRecs;
61 const Rec* fTrackingCell = nullptr;
  /external/skqp/include/views/
SkTouchGesture.h 58 struct Rec {
65 SkTDArray<Rec> fTouches;
81 float computePinch(const Rec&, const Rec&);

Completed in 2299 milliseconds

1 2 3 4 5 6 7 8 910