Home
last modified time | relevance | path

Searched refs:Ptr (Results 1 - 25 of 534) sorted by relevance

12345678910>>...22

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DTwine.cpp57 void Twine::printOneChild(raw_ostream &OS, Child Ptr, in printOneChild() argument
63 Ptr.twine->print(OS); in printOneChild()
66 OS << Ptr.cString; in printOneChild()
69 OS << *Ptr.stdString; in printOneChild()
72 OS << *Ptr.stringRef; in printOneChild()
75 OS << *Ptr.smallString; in printOneChild()
78 OS << *Ptr.formatvObject; in printOneChild()
81 OS << Ptr.character; in printOneChild()
84 OS << Ptr.decUI; in printOneChild()
87 OS << Ptr in printOneChild()
107 printOneChildRepr(raw_ostream &OS, Child Ptr, NodeKind Kind) const printOneChildRepr() argument
[all...]
H A Draw_ostream.cpp219 raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) { in write() argument
224 write_impl(Ptr, Size); in write()
229 return write(Ptr, Size); in write()
240 write_impl(Ptr, BytesToWrite); in write()
244 return write(Ptr + BytesToWrite, BytesRemaining); in write()
246 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining); in write()
252 copy_to_buffer(Ptr, NumBytes); in write()
254 return write(Ptr + NumBytes, Size - NumBytes); in write()
257 copy_to_buffer(Ptr, Size); in write()
262 void raw_ostream::copy_to_buffer(const char *Ptr, size_ argument
540 write_impl(const char *Ptr, size_t Size) write_impl() argument
613 pwrite_impl(const char *Ptr, size_t Size, uint64_t Offset) pwrite_impl() argument
730 write_impl(const char *Ptr, size_t Size) write_impl() argument
740 write_impl(const char *Ptr, size_t Size) write_impl() argument
744 pwrite_impl(const char *Ptr, size_t Size, uint64_t Offset) pwrite_impl() argument
762 write_impl(const char *Ptr, size_t Size) write_impl() argument
769 pwrite_impl(const char *Ptr, size_t Size, uint64_t Offset) pwrite_impl() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DTwine.cpp57 void Twine::printOneChild(raw_ostream &OS, Child Ptr, in printOneChild() argument
63 Ptr.twine->print(OS); in printOneChild()
66 OS << Ptr.cString; in printOneChild()
69 OS << *Ptr.stdString; in printOneChild()
72 OS << *Ptr.stringRef; in printOneChild()
75 OS << *Ptr.smallString; in printOneChild()
78 OS << *Ptr.formatvObject; in printOneChild()
81 OS << Ptr.character; in printOneChild()
84 OS << Ptr.decUI; in printOneChild()
87 OS << Ptr in printOneChild()
107 printOneChildRepr(raw_ostream &OS, Child Ptr, NodeKind Kind) const printOneChildRepr() argument
[all...]
H A DFormattedStream.cpp23 static void UpdatePosition(std::pair<unsigned, unsigned> &Position, const char *Ptr, size_t Size) { in UpdatePosition() argument
29 for (const char *End = Ptr + Size; Ptr != End; ++Ptr) { in UpdatePosition()
31 switch (*Ptr) { in UpdatePosition()
48 void formatted_raw_ostream::ComputePosition(const char *Ptr, size_t Size) { in ComputePosition() argument
52 if (Ptr <= Scanned && Scanned <= Ptr + Size) in ComputePosition()
55 UpdatePosition(Position, Scanned, Size - (Scanned - Ptr)); in ComputePosition()
57 UpdatePosition(Position, Ptr, Siz in ComputePosition()
76 write_impl(const char *Ptr, size_t Size) write_impl() argument
[all...]
H A DDynamicLibrary.cpp79 if (void *Ptr = DLSym(Handle, Symbol)) in LibLookup()
80 return Ptr; in LibLookup()
84 if (void *Ptr = DLSym(Handle, Symbol)) in LibLookup()
85 return Ptr; in LibLookup()
96 if (void *Ptr = LibLookup(Symbol, Order)) in Lookup()
97 return Ptr; in Lookup()
101 if (void *Ptr = DLSym(Process, Symbol)) in Lookup()
102 return Ptr; in Lookup()
106 if (void *Ptr = LibLookup(Symbol, Order)) in Lookup()
107 return Ptr; in Lookup()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DSMLoc.h25 const char *Ptr; member in llvm::SMLoc
28 SMLoc() : Ptr(nullptr) {} in SMLoc()
30 bool isValid() const { return Ptr != nullptr; } in isValid()
32 bool operator==(const SMLoc &RHS) const { return RHS.Ptr == Ptr; } in operator ==()
33 bool operator!=(const SMLoc &RHS) const { return RHS.Ptr != Ptr; } in operator !=()
35 const char *getPointer() const { return Ptr; } in getPointer()
37 static SMLoc getFromPointer(const char *Ptr) { in getFromPointer() argument
39 L.Ptr in getFromPointer()
[all...]
H A DManagedStatic.h32 static void call(void *Ptr) { delete (T *)Ptr; } in call()
36 static void call(void *Ptr) { delete[](T *)Ptr; } in call()
52 mutable std::atomic<void *> Ptr{};
58 mutable std::atomic<void *> Ptr;
71 bool isConstructed() const { return Ptr != nullptr; } in isConstructed()
86 void *Tmp = Ptr.load(std::memory_order_acquire); in operator *()
90 return *static_cast<C *>(Ptr.load(std::memory_order_relaxed)); in operator *()
96 void *Tmp = Ptr in operator *()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DSMLoc.h24 const char *Ptr = nullptr; member in llvm::SMLoc
29 bool isValid() const { return Ptr != nullptr; } in isValid()
31 bool operator==(const SMLoc &RHS) const { return RHS.Ptr == Ptr; } in operator ==()
32 bool operator!=(const SMLoc &RHS) const { return RHS.Ptr != Ptr; } in operator !=()
34 const char *getPointer() const { return Ptr; } in getPointer()
36 static SMLoc getFromPointer(const char *Ptr) { in getFromPointer() argument
38 L.Ptr = Ptr; in getFromPointer()
[all...]
H A DManagedStatic.h29 static void call(void *Ptr) { delete (T *)Ptr; } in call()
32 static void call(void *Ptr) { delete[](T *)Ptr; } in call()
52 mutable std::atomic<void *> Ptr{};
58 mutable std::atomic<void *> Ptr;
71 bool isConstructed() const { return Ptr != nullptr; } in isConstructed()
87 void *Tmp = Ptr.load(std::memory_order_acquire); in operator *()
91 return *static_cast<C *>(Ptr.load(std::memory_order_relaxed)); in operator *()
97 void *Tmp = Ptr in operator *()
[all...]
H A DArrayRecycler.h56 void push(unsigned Idx, T *Ptr) { in push() argument
57 assert(Ptr && "Cannot recycle NULL pointer"); in push()
58 FreeList *Entry = reinterpret_cast<FreeList*>(Ptr); in push()
63 __asan_poison_memory_region(Ptr, Capacity::get(Idx).getSize()); in push()
106 while (T *Ptr = pop(Bucket.size() - 1)) in clear()
107 Allocator.Deallocate(Ptr); in clear()
127 if (T *Ptr = pop(Cap.getBucket())) in allocate()
128 return Ptr; in allocate()
137 void deallocate(Capacity Cap, T *Ptr) { in deallocate() argument
138 push(Cap.getBucket(), Ptr); in deallocate()
[all...]
H A DAllocator.h63 /// Deallocate \a Ptr to \a Size bytes of memory allocated by this
65 void Deallocate(const void *Ptr, size_t Size) { in Deallocate() argument
74 return static_cast<DerivedT *>(this)->Deallocate(Ptr, Size); in Deallocate()
89 Deallocate(T *Ptr, size_t Num = 1) { in Deallocate() argument
90 Deallocate(static_cast<const void *>(Ptr), Num * sizeof(T)); in Deallocate()
106 void Deallocate(const void *Ptr, size_t /*Size*/) { in Deallocate() argument
107 free(const_cast<void *>(Ptr)); in Deallocate()
282 void Deallocate(const void *Ptr, size_t Size) { in Deallocate() argument
283 __asan_poison_memory_region(Ptr, Size); in Deallocate()
292 /// an input pointer \p Ptr i
296 identifyObject(const void *Ptr) identifyObject() argument
322 identifyKnownObject(const void *Ptr) identifyKnownObject() argument
339 identifyKnownAlignedObject(const void *Ptr) identifyKnownAlignedObject() argument
428 void *Ptr = PtrAndSize.first; DeallocateCustomSizedSlabs() local
486 void *Ptr = PtrAndSize.first; DestroyAll() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
H A DMVEGatherScatterLowering.cpp77 // Check whether Ptr is hidden behind a bitcast and look through it
78 void lookThroughBitcast(Value *&Ptr);
82 Value *checkGEP(Value *&Offsets, Type *Ty, Value *Ptr, IRBuilder<> Builder);
86 Value *tryCreateMaskedGatherOffset(IntrinsicInst *I, Value *Ptr,
89 Value *tryCreateMaskedGatherBase(IntrinsicInst *I, Value *Ptr,
118 Value *MVEGatherScatterLowering::checkGEP(Value *&Offsets, Type *Ty, Value *Ptr, in checkGEP() argument
120 GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Ptr); in checkGEP()
163 void MVEGatherScatterLowering::lookThroughBitcast(Value *&Ptr) { in lookThroughBitcast() argument
165 if (auto *BitCast = dyn_cast<BitCastInst>(Ptr)) { in lookThroughBitcast()
170 Ptr in lookThroughBitcast()
183 Value *Ptr = I->getArgOperand(0); lowerGather() local
215 tryCreateMaskedGatherBase( IntrinsicInst *I, Value *Ptr, IRBuilder<> Builder) tryCreateMaskedGatherBase() argument
235 tryCreateMaskedGatherOffset( IntrinsicInst *I, Value *Ptr, IRBuilder<> Builder) tryCreateMaskedGatherOffset() argument
[all...]
/third_party/json/tests/thirdparty/Fuzzer/test/
H A DTraceMallocTest.cpp11 int *Ptr; variable
16 delete Ptr; in LLVMFuzzerTestOneInput()
17 Ptr = nullptr; in LLVMFuzzerTestOneInput()
19 delete Ptr; in LLVMFuzzerTestOneInput()
20 Ptr = new int; in LLVMFuzzerTestOneInput()
22 if (!Ptr) in LLVMFuzzerTestOneInput()
23 Ptr = new int; in LLVMFuzzerTestOneInput()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp147 Value *Ptr, Value *OrigPtr) { in replaceSymbolicStrideSCEV()
148 const SCEV *OrigSCEV = PSE.getSCEV(Ptr); in replaceSymbolicStrideSCEV()
153 PtrToStride.find(OrigPtr ? OrigPtr : Ptr); in replaceSymbolicStrideSCEV()
166 auto *Expr = PSE.getSCEV(Ptr); in replaceSymbolicStrideSCEV()
190 void RuntimePointerChecking::insert(Loop *Lp, Value *Ptr, bool WritePtr, in insert() argument
195 const SCEV *Sc = replaceSymbolicStrideSCEV(PSE, Strides, Ptr); in insert()
226 Ptr->getType()->getPointerElementType()->getScalarSizeInBits() / 8; in insert()
231 Pointers.emplace_back(Ptr, ScStart, ScEnd, WritePtr, DepSetId, ASId, Sc); in insert()
511 Value *Ptr = const_cast<Value*>(Loc.Ptr); in addLoad() local
145 replaceSymbolicStrideSCEV(PredicatedScalarEvolution &PSE, const ValueToValueMap &PtrToStride, Value *Ptr, Value *OrigPtr) replaceSymbolicStrideSCEV() argument
520 Value *Ptr = const_cast<Value*>(Loc.Ptr); addStore() local
620 hasComputableBounds(PredicatedScalarEvolution &PSE, const ValueToValueMap &Strides, Value *Ptr, Loop *L, bool Assume) hasComputableBounds() argument
641 isNoWrap(PredicatedScalarEvolution &PSE, const ValueToValueMap &Strides, Value *Ptr, Loop *L) isNoWrap() argument
661 Value *Ptr = Access.getPointer(); createCheckForAccess() local
724 Value *Ptr = A.getValue(); canCheckPtrAtRT() local
859 Value *Ptr = AV.getValue(); processMemAccesses() local
936 isInBoundsGep(Value *Ptr) isInBoundsGep() argument
944 isNoWrapAddRec(Value *Ptr, const SCEVAddRecExpr *AR, PredicatedScalarEvolution &PSE, const Loop *L) isNoWrapAddRec() argument
991 getPtrStride(PredicatedScalarEvolution &PSE, Value *Ptr, const Loop *Lp, const ValueToValueMap &StridesMap, bool Assume, bool ShouldCheckWrap) getPtrStride() argument
1713 getInstructionsForAccess(Value *Ptr, bool isWrite) const getInstructionsForAccess() argument
1930 Value *Ptr = ST->getPointerOperand(); analyzeLoop() local
1961 Value *Ptr = LD->getPointerOperand(); analyzeLoop() local
2149 Value *Ptr = PtrRtChecking.Pointers[CG->Members[0]].PointerValue; expandBounds() local
2283 Value *Ptr = nullptr; collectStridedAccess() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPUAnnotateUniformValues.cpp94 const Value *Ptr = Load->getPointerOperand(); in isClobberedInFunction() local
110 auto Q = MDR->getPointerDependencyFrom(MemoryLocation(Ptr), true, in isClobberedInFunction()
124 Value *Ptr = I.getPointerOperand(); in visitLoadInst() local
125 if (!DA->isUniform(Ptr)) in visitLoadInst()
135 Instruction *PtrI = dyn_cast<Instruction>(Ptr); in visitLoadInst()
137 if (isa<Argument>(Ptr) || isa<GlobalValue>(Ptr)) { in visitLoadInst()
139 if (noClobberClones.count(Ptr)) { in visitLoadInst()
140 PtrI = noClobberClones[Ptr]; in visitLoadInst()
145 Type::getInt32Ty(Ptr in visitLoadInst()
[all...]
H A DAMDGPUInstrInfo.cpp33 const Value *Ptr = MMO->getValue(); in isUniformMMO() local
36 // If Ptr is null, then that means this mem operand contains a in isUniformMMO()
38 if (!Ptr || isa<UndefValue>(Ptr) || in isUniformMMO()
39 isa<Constant>(Ptr) || isa<GlobalValue>(Ptr)) in isUniformMMO()
45 if (const Argument *Arg = dyn_cast<Argument>(Ptr)) in isUniformMMO()
48 const Instruction *I = dyn_cast<Instruction>(Ptr); in isUniformMMO()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
H A DCLContextImpl.h23 using Ptr = std::unique_ptr<CLContextImpl>;
30 virtual CLCommandQueueImpl::Ptr createCommandQueue(const cl::CommandQueue &commandQueue,
33 virtual CLMemoryImpl::Ptr createBuffer(const cl::Buffer &buffer,
38 virtual CLMemoryImpl::Ptr createImage(const cl::Image &image,
51 virtual CLSamplerImpl::Ptr createSampler(const cl::Sampler &sampler, cl_int &errorCode) = 0;
53 virtual CLProgramImpl::Ptr createProgramWithSource(const cl::Program &program,
57 virtual CLProgramImpl::Ptr createProgramWithIL(const cl::Program &program,
62 virtual CLProgramImpl::Ptr createProgramWithBinary(const cl::Program &program,
68 virtual CLProgramImpl::Ptr createProgramWithBuiltInKernels(const cl::Program &program,
72 virtual CLProgramImpl::Ptr linkProgra
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DSmallPtrSet.h131 std::pair<const void *const *, bool> insert_imp(const void *Ptr) { in insert_imp() argument
138 if (Value == Ptr) in insert_imp()
146 *LastTombstone = Ptr; in insert_imp()
153 SmallArray[NumNonEmpty++] = Ptr; in insert_imp()
158 return insert_imp_big(Ptr); in insert_imp()
165 bool erase_imp(const void * Ptr);
167 bool count_imp(const void * Ptr) const { in count_imp()
172 if (*APtr == Ptr) in count_imp()
178 return *FindBucketFor(Ptr) == Ptr; in count_imp()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
H A DNVPTXLowerArgs.cpp117 // Knowing Ptr must point to the global address space, this function
118 // addrspacecasts Ptr to global and then back to generic. This allows
121 void markPointerAsGlobal(Value *Ptr);
178 void NVPTXLowerArgs::markPointerAsGlobal(Value *Ptr) { in markPointerAsGlobal() argument
179 if (Ptr->getType()->getPointerAddressSpace() == ADDRESS_SPACE_GLOBAL) in markPointerAsGlobal()
184 if (Argument *Arg = dyn_cast<Argument>(Ptr)) { in markPointerAsGlobal()
185 // Insert at the functon entry if Ptr is an argument. in markPointerAsGlobal()
188 // Insert right after Ptr if Ptr is an instruction. in markPointerAsGlobal()
189 InsertPt = ++cast<Instruction>(Ptr) in markPointerAsGlobal()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
H A Dinvoke.h94 template <typename MemFunType, typename C, typename Ptr, typename... Args>
95 struct AcceptImpl<MemFunType C::*, Ptr, Args...>
96 : std::integral_constant<bool, !std::is_base_of<C, Ptr>::value &&
100 template <typename MemFun, typename Ptr, typename... Args>
101 static decltype(((*std::declval<Ptr>()).*
103 Invoke(MemFun&& mem_fun, Ptr&& ptr, Args&&... args) { in Invoke()
104 return ((*std::forward<Ptr>(ptr)).* in Invoke()
134 template <typename R, typename C, typename Ptr>
135 struct AcceptImpl<R C::*, Ptr>
136 : std::integral_constant<bool, !std::is_base_of<C, Ptr>
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/cl/
H A DCLContextCL.h35 CLCommandQueueImpl::Ptr createCommandQueue(const cl::CommandQueue &commandQueue,
38 CLMemoryImpl::Ptr createBuffer(const cl::Buffer &buffer,
43 CLMemoryImpl::Ptr createImage(const cl::Image &image,
56 CLSamplerImpl::Ptr createSampler(const cl::Sampler &sampler, cl_int &errorCode) override;
58 CLProgramImpl::Ptr createProgramWithSource(const cl::Program &program,
62 CLProgramImpl::Ptr createProgramWithIL(const cl::Program &program,
67 CLProgramImpl::Ptr createProgramWithBinary(const cl::Program &program,
73 CLProgramImpl::Ptr createProgramWithBuiltInKernels(const cl::Program &program,
77 CLProgramImpl::Ptr linkProgram(const cl::Program &program,
84 CLEventImpl::Ptr createUserEven
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/ObjCARC/
H A DPtrState.cpp229 const Value *Ptr, in HandlePotentialAlterRefCount()
235 if (!CanAlterRefCount(Inst, Ptr, PA, Class)) in HandlePotentialAlterRefCount()
239 << *Ptr << "\n"); in HandlePotentialAlterRefCount() local
257 const Value *Ptr, in HandlePotentialUse()
289 if (CanUse(Inst, Ptr, PA, Class)) { in HandlePotentialUse()
291 << *Ptr << "\n"); in HandlePotentialUse()
295 << "; " << *Ptr << "\n"); in HandlePotentialUse()
299 if (CanUse(Call, Ptr, PA, GetBasicARCInstKind(Call))) { in HandlePotentialUse()
301 << *Ptr << "\n"); in HandlePotentialUse()
307 if (CanUse(Inst, Ptr, P in HandlePotentialUse()
228 HandlePotentialAlterRefCount(Instruction *Inst, const Value *Ptr, ProvenanceAnalysis &PA, ARCInstKind Class) HandlePotentialAlterRefCount() argument
256 HandlePotentialUse(BasicBlock *BB, Instruction *Inst, const Value *Ptr, ProvenanceAnalysis &PA, ARCInstKind Class) HandlePotentialUse() argument
380 HandlePotentialAlterRefCount(Instruction *Inst, const Value *Ptr, ProvenanceAnalysis &PA, ARCInstKind Class) HandlePotentialAlterRefCount() argument
415 HandlePotentialUse(Instruction *Inst, const Value *Ptr, ProvenanceAnalysis &PA, ARCInstKind Class) HandlePotentialUse() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DSmallPtrSet.h125 std::pair<const void *const *, bool> insert_imp(const void *Ptr) { in insert_imp() argument
132 if (Value == Ptr) in insert_imp()
140 *LastTombstone = Ptr; in insert_imp()
148 SmallArray[NumNonEmpty++] = Ptr; in insert_imp()
154 return insert_imp_big(Ptr); in insert_imp()
161 bool erase_imp(const void * Ptr) { in erase_imp() argument
162 const void *const *P = find_imp(Ptr); in erase_imp()
167 assert(*Loc == Ptr && "broken find!"); in erase_imp()
175 /// slot which stores Ptr;
176 const void *const * find_imp(const void * Ptr) cons
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DEvaluator.cpp177 /// Apply 'Func' to Ptr. If this returns nullptr, introspect the pointer's
182 evaluateBitcastFromPtr(Constant *Ptr, const DataLayout &DL, in evaluateBitcastFromPtr() argument
186 while (!(Val = Func(Ptr))) { in evaluateBitcastFromPtr()
190 Type *Ty = cast<PointerType>(Ptr->getType())->getElementType(); in evaluateBitcastFromPtr()
198 Ptr = ConstantExpr::getGetElementPtr(Ty, Ptr, IdxList); in evaluateBitcastFromPtr()
199 if (auto *FoldedPtr = ConstantFoldConstant(Ptr, DL, TLI)) in evaluateBitcastFromPtr()
200 Ptr = FoldedPtr; in evaluateBitcastFromPtr()
215 auto findMemLoc = [this](Constant *Ptr) { in ComputeLoadResult()
217 MutatedMemory.find(Ptr); in ComputeLoadResult()
341 Constant *Ptr = getVal(SI->getOperand(1)); EvaluateBlock() local
450 Constant *Ptr = getVal(LI->getOperand(0)); EvaluateBlock() local
501 Constant *Ptr = getVal(MSI->getDest()); EvaluateBlock() local
528 Value *Ptr = PtrArg->stripPointerCasts(); EvaluateBlock() local
[all...]
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/subtly/
H A Dfont_assembler.cc77 Ptr<CMapTable::Builder> cmap_table_builder = in AssembleCMapTable()
82 Ptr<CMapTable::CMapFormat4::Builder> cmap_builder = in AssembleCMapTable()
94 Ptr<CMapTable::CMapFormat4::Builder::Segment> current_segment; in AssembleCMapTable()
127 Ptr<CMapTable::CMapFormat4::Builder::Segment> segment = segment_list->at(i); in AssembleCMapTable()
144 Ptr<LocaTable::Builder> loca_table_builder = in AssembleGlyphAndLocaTables()
147 Ptr<GlyphTable::Builder> glyph_table_builder = in AssembleGlyphAndLocaTables()
158 Ptr<LocaTable> loca_table = in AssembleGlyphAndLocaTables()
170 Ptr<LocaTable> first_loca_table = in AssembleGlyphAndLocaTables()
187 Ptr<LocaTable> loca_table = in AssembleGlyphAndLocaTables()
194 Ptr<GlyphTabl in AssembleGlyphAndLocaTables()
[all...]

Completed in 11 milliseconds

12345678910>>...22