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

1 2 3

  /prebuilts/go/darwin-x86/doc/progs/
image_package3.go 13 r := image.Rect(2, 1, 5, 5).Add(image.Pt(-4, -2))
14 fmt.Println(r.Dx(), r.Dy(), image.Pt(0, 0).In(r)) // prints 3 4 true
image_package2.go 15 fmt.Println(r.Dx(), r.Dy(), image.Pt(0, 0).In(r)) // prints 3 4 false
  /prebuilts/go/linux-x86/doc/progs/
image_package3.go 13 r := image.Rect(2, 1, 5, 5).Add(image.Pt(-4, -2))
14 fmt.Println(r.Dx(), r.Dy(), image.Pt(0, 0).In(r)) // prints 3 4 true
image_package2.go 15 fmt.Println(r.Dx(), r.Dy(), image.Pt(0, 0).In(r)) // prints 3 4 false
  /external/pdfium/xfa/fxfa/parser/
cxfa_para.cpp 36 {XFA_Attribute::LineHeight, XFA_AttributeType::Measure, (void*)L"0pt"},
70 return JSObject()->GetMeasure(XFA_Attribute::LineHeight).ToUnit(XFA_Unit::Pt);
74 return JSObject()->GetMeasure(XFA_Attribute::MarginLeft).ToUnit(XFA_Unit::Pt);
80 .ToUnit(XFA_Unit::Pt);
84 return JSObject()->GetMeasure(XFA_Attribute::SpaceAbove).ToUnit(XFA_Unit::Pt);
88 return JSObject()->GetMeasure(XFA_Attribute::SpaceBelow).ToUnit(XFA_Unit::Pt);
92 return JSObject()->GetMeasure(XFA_Attribute::TextIndent).ToUnit(XFA_Unit::Pt);
cxfa_containerlayoutitem.cpp 39 .ToUnit(XFA_Unit::Pt),
42 .ToUnit(XFA_Unit::Pt));
cxfa_measurement.cpp 53 case XFA_Unit::Pt:
85 case XFA_Unit::Pt:
107 case XFA_Unit::Pt:
134 if (wsUnit == L"pt")
135 return XFA_Unit::Pt;
cxfa_font.cpp 38 {XFA_Attribute::Size, XFA_AttributeType::Measure, (void*)L"10pt"},
72 .ToUnit(XFA_Unit::Pt);
92 return ms.ToUnit(XFA_Unit::Pt);
110 return JSObject()->GetMeasure(XFA_Attribute::Size).ToUnit(XFA_Unit::Pt);
cxfa_layoutprocessor.cpp 69 pFormNode->JSObject()->GetMeasure(XFA_Attribute::X).ToUnit(XFA_Unit::Pt);
71 pFormNode->JSObject()->GetMeasure(XFA_Attribute::Y).ToUnit(XFA_Unit::Pt);
cxfa_layoutitem.cpp 84 .ToUnit(XFA_Unit::Pt),
87 .ToUnit(XFA_Unit::Pt));
96 .ToUnit(XFA_Unit::Pt),
99 .ToUnit(XFA_Unit::Pt));
cxfa_stroke.cpp 101 return GetMSThickness().ToUnit(XFA_Unit::Pt);
149 .ToUnit(XFA_Unit::Pt);
cxfa_caption.cpp 70 return JSObject()->GetMeasure(XFA_Attribute::Reserve).ToUnit(XFA_Unit::Pt);
cxfa_itemlayoutprocessor.cpp 99 containerSize.width = wValue->ToUnit(XFA_Unit::Pt);
106 containerSize.height = hValue->ToUnit(XFA_Unit::Pt);
115 containerSize.width = maxW->ToUnit(XFA_Unit::Pt);
122 containerSize.height = maxH->ToUnit(XFA_Unit::Pt);
145 componentSize.width += leftInset->ToUnit(XFA_Unit::Pt);
150 componentSize.width += rightInset->ToUnit(XFA_Unit::Pt);
160 componentSize.height += topInset->ToUnit(XFA_Unit::Pt);
166 componentSize.height += bottomInset->ToUnit(XFA_Unit::Pt);
190 .ToUnit(XFA_Unit::Pt);
193 .ToUnit(XFA_Unit::Pt);
    [all...]
  /prebuilts/go/darwin-x86/src/image/draw/
clip_test.go 46 image.Pt(40, 40),
59 image.Pt(20, 20),
72 image.Pt(20, 20),
81 image.Pt(15, 8),
85 image.Pt(20, 20),
94 image.Pt(15, 66),
98 image.Pt(20, 66),
107 image.Pt(15, 91),
111 image.Pt(15, 91),
120 image.Pt(44, 33)
    [all...]
  /prebuilts/go/linux-x86/src/image/draw/
clip_test.go 46 image.Pt(40, 40),
59 image.Pt(20, 20),
72 image.Pt(20, 20),
81 image.Pt(15, 8),
85 image.Pt(20, 20),
94 image.Pt(15, 66),
98 image.Pt(20, 66),
107 image.Pt(15, 91),
111 image.Pt(15, 91),
120 image.Pt(44, 33)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
VirtRegMap.h 309 bool isSpillPt(MachineInstr *Pt) const {
310 return SpillPt2VirtMap.find(Pt) != SpillPt2VirtMap.end();
315 std::vector<std::pair<unsigned,bool> > &getSpillPtSpills(MachineInstr *Pt) {
316 return SpillPt2VirtMap[Pt];
320 void addSpillPoint(unsigned virtReg, bool isKill, MachineInstr *Pt) {
322 I = SpillPt2VirtMap.find(Pt);
328 SpillPt2VirtMap.insert(std::make_pair(Pt, Virts));
349 bool isRestorePt(MachineInstr *Pt) const {
350 return RestorePt2VirtMap.find(Pt) != RestorePt2VirtMap.end();
355 std::vector<unsigned> &getRestorePtRestores(MachineInstr *Pt) {
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64AddressTypePromotion.cpp 387 for (auto &Pt : CurPts) {
388 if (DT.dominates(Inst, Pt)) {
389 DEBUG(dbgs() << "Replace all uses of:\n" << *Pt << "\nwith:\n"
391 Pt->replaceAllUsesWith(Inst);
392 ToRemove.insert(Pt);
393 Pt = Inst;
397 if (!DT.dominates(Pt, Inst))
403 << *Pt << '\n');
404 Inst->replaceAllUsesWith(Pt);
  /prebuilts/go/darwin-x86/src/image/
ycbcr_test.go 44 Pt(0, 0),
45 Pt(1000, 1001),
46 Pt(5001, -400),
47 Pt(-701, -801),
geom.go 72 // Pt is shorthand for Point{X, Y}.
73 func Pt(X, Y int) Point {
259 // Rect is shorthand for Rectangle{Pt(x0, y0), Pt(x1, y1)}. The returned
  /prebuilts/go/linux-x86/src/image/
ycbcr_test.go 44 Pt(0, 0),
45 Pt(1000, 1001),
46 Pt(5001, -400),
47 Pt(-701, -801),
geom.go 72 // Pt is shorthand for Point{X, Y}.
73 func Pt(X, Y int) Point {
259 // Rect is shorthand for Rectangle{Pt(x0, y0), Pt(x1, y1)}. The returned
  /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/
SmmProfile.c 476 UINT64 *Pt;
555 Pt = AllocatePageTableMemory (1);
556 ASSERT (Pt != NULL);
559 for (Level4 = 0; Level4 < SIZE_4KB / sizeof(*Pt); Level4++) {
560 Pt[Level4] = Address + ((Level4 << 12) | PAGE_ATTRIBUTE_BITS);
561 } // end for PT
562 *Pte = (UINTN)Pt | PAGE_ATTRIBUTE_BITS;
627 Pt = (UINT64 *)(UINTN)(*Pte & PHYSICAL_ADDRESS_MASK);
628 if (Pt == 0) {
631 for (Level4 = 0; Level4 < SIZE_4KB / sizeof(*Pt); Level4++, Pt++) {
    [all...]
  /external/pdfium/third_party/lcms/src/
cmspack.c 775 cmsFloat64Number* Pt = (cmsFloat64Number*) accum;
779 Lab.L = Pt[0];
780 Lab.a = Pt[Stride];
781 Lab.b = Pt[Stride*2];
806 cmsFloat32Number* Pt = (cmsFloat32Number*) accum;
809 Lab.L = Pt[0];
810 Lab.a = Pt[Stride];
811 Lab.b = Pt[Stride*2];
837 cmsFloat64Number* Pt = (cmsFloat64Number*) accum;
840 XYZ.X = Pt[0]
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/
NvmExpressPassthru.c 32 DEBUG ((EFI_D_VERBOSE, " SQ Identifier : [0x%x], Phase Tag : [%d], Cmd Identifier : [0x%x]\n", Cq->Sqid, Cq->Pt, Cq->Cid));
660 if (Cq->Pt != Private->Pt[QueueId]) {
689 Private->Pt[QueueId] ^= 1;
    [all...]
  /external/pdfium/fxjs/xfa/
cjx_layoutpseudomodel.cpp 82 WideString unit(L"pt");
110 measure.Set(rtRect.height, XFA_Unit::Pt);
113 measure.Set(rtRect.width, XFA_Unit::Pt);
116 measure.Set(rtRect.left, XFA_Unit::Pt);
119 measure.Set(rtRect.top, XFA_Unit::Pt);

Completed in 457 milliseconds

1 2 3