/external/skia/tests/ |
D | ClipperTest.cpp | 36 static const SkScalar CX = SkScalarHalf(L + R); in test_intersectline() local 47 { CX, T }, { CX, T - 10 }, in test_intersectline() 48 { CX, B }, { CX, B + 10 }, in test_intersectline() 67 { CX, T }, { CX, B }, in test_intersectline() 69 { CX, T }, { R, CY }, in test_intersectline() 70 { CX, T }, { L, CY }, in test_intersectline() 71 { L, CY }, { CX, B }, in test_intersectline() 72 { R, CY }, { CX, B }, in test_intersectline() 88 { L - 10, CY }, { CX, CY }, { L, CY }, { CX, CY }, in test_intersectline() 89 { CX, T - 10 }, { CX, CY }, { CX, T }, { CX, CY }, in test_intersectline() [all …]
|
D | EmptyPathTest.cpp | 104 #define CX (SkIntToScalar(DIMENSION) / 2) macro 108 static void make_M(SkPath* path) { path->moveTo(CX, CY); } in make_M() 109 static void make_MM(SkPath* path) { path->moveTo(CX, CY); path->moveTo(CX, CY); } in make_MM() 110 static void make_MZM(SkPath* path) { path->moveTo(CX, CY); path->close(); path->moveTo(CX, CY); } in make_MZM() 111 static void make_L(SkPath* path) { path->moveTo(CX, CY); path->lineTo(CX, CY); } in make_L() 112 static void make_Q(SkPath* path) { path->moveTo(CX, CY); path->quadTo(CX, CY, CX, CY); } in make_Q() 113 static void make_C(SkPath* path) { path->moveTo(CX, CY); path->cubicTo(CX, CY, CX, CY, CX, CY); } in make_C()
|
/external/qemu-pc-bios/vgabios/ |
D | vgabios.h | 14 #define SET_CL(val8) CX = ((CX & 0xff00) | (val8)) 18 #define SET_CH(val8) CX = ((CX & 0x00ff) | ((val8) << 8)) 23 #define GET_CL() ( CX & 0x00ff ) 27 #define GET_CH() ( CX >> 8 )
|
D | vgabios.c | 583 static void int10_debugmsg(DI, SI, BP, SP, BX, DX, CX, AX, DS, ES, FLAGS) in int10_debugmsg() argument 584 Bit16u DI, SI, BP, SP, BX, DX, CX, AX, ES, DS, FLAGS; in int10_debugmsg() 588 printf("vgabios call ah%02x al%02x bx%04x cx%04x dx%04x\n",GET_AH(),GET_AL(),BX,CX,DX); 596 static void int10_func(DI, SI, BP, SP, BX, DX, CX, AX, DS, ES, FLAGS) in int10_func() argument 597 Bit16u DI, SI, BP, SP, BX, DX, CX, AX, ES, DS, FLAGS; in int10_func() 629 biosfn_get_cursor_pos(GET_BH(),&CX,&DX); 638 CX=0x00; 654 biosfn_write_char_attr(GET_AL(),GET_BH(),GET_BL(),CX); 657 biosfn_write_char_only(GET_AL(),GET_BH(),GET_BL(),CX); 660 biosfn_write_pixel(GET_BH(),GET_AL(),CX,DX); [all …]
|
D | vbe.c | 898 void vbe_biosfn_return_mode_information(AX, CX, ES, DI) in vbe_biosfn_return_mode_information() argument 899 Bit16u *AX;Bit16u CX; Bit16u ES;Bit16u DI; in vbe_biosfn_return_mode_information() 909 printf("VBE vbe_biosfn_return_mode_information ES%x DI%x CX%x\n",ES,DI,CX); 912 using_lfb=((CX & VBE_MODE_LINEAR_FRAME_BUFFER) == VBE_MODE_LINEAR_FRAME_BUFFER); 914 CX = (CX & 0x1ff); 916 cur_info = mode_info_find_mode(CX, using_lfb, &cur_info); 921 printf("VBE found mode %x\n",CX); 942 printf("VBE *NOT* found mode %x\n",CX); 1151 void vbe_biosfn_save_restore_state(AX, CX, DX, ES, BX) in vbe_biosfn_save_restore_state() argument 1152 Bit16u *AX; Bit16u CX; Bit16u DX; Bit16u ES; Bit16u *BX; in vbe_biosfn_save_restore_state() [all …]
|
D | vbe.h | 15 void vbe_biosfn_return_mode_information(AX, CX, ES, DI); 17 void vbe_biosfn_save_restore_state(AX, CX, DX, ES, BX);
|
/external/qemu-pc-bios/bochs/bios/ |
D | rombios.c | 995 #define SET_CL(val8) CX = ((CX & 0xff00) | (val8)) 999 #define SET_CH(val8) CX = ((CX & 0x00ff) | ((val8) << 8)) 1004 #define GET_CL() ( CX & 0x00ff ) 1008 #define GET_CH() ( CX >> 8 ) 2952 insw ;; CX words transfered from port(DX) to ES:[DI] 2957 insd ;; CX dwords transfered from port(DX) to ES:[DI] 3104 outsw ;; CX words transfered from port(DX) to ES:[SI] 3110 outsd ;; CX dwords transfered from port(DX) to ES:[SI] 3238 outsw ;; CX words transfered from port(DX) to ES:[SI] 3369 insw ;; CX words transfered tp port(DX) to ES:[DI] [all …]
|
/external/llvm/lib/Analysis/ |
D | AliasAnalysis.cpp | 334 AliasAnalysis::getModRefInfo(const AtomicCmpXchgInst *CX, const Location &Loc) { in getModRefInfo() argument 336 if (CX->getOrdering() > Monotonic) in getModRefInfo() 340 if (!alias(getLocation(CX), Loc)) in getModRefInfo()
|
/external/llvm/include/llvm/Analysis/ |
D | AliasAnalysis.h | 431 ModRefResult getModRefInfo(const AtomicCmpXchgInst *CX, const Location &Loc); 434 ModRefResult getModRefInfo(const AtomicCmpXchgInst *CX, in getModRefInfo() argument 436 return getModRefInfo(CX, Location(P, Size)); in getModRefInfo()
|
/external/llvm/lib/Target/X86/ |
D | X86RegisterInfo.cpp | 547 case X86::CH: case X86::CL: case X86::CX: case X86::ECX: case X86::RCX: in getX86SubSuperRegister() 559 case X86::CH: case X86::CL: case X86::CX: case X86::ECX: case X86::RCX: in getX86SubSuperRegister() 596 case X86::CH: case X86::CL: case X86::CX: case X86::ECX: case X86::RCX: in getX86SubSuperRegister() 597 return X86::CX; in getX86SubSuperRegister() 632 case X86::CH: case X86::CL: case X86::CX: case X86::ECX: case X86::RCX: in getX86SubSuperRegister() 684 case X86::CH: case X86::CL: case X86::CX: case X86::ECX: case X86::RCX: in getX86SubSuperRegister()
|
D | X86RegisterInfo.td | 76 def CX : RegisterWithSubRegs<"cx", [CL,CH]>; 102 def ECX : RegisterWithSubRegs<"ecx", [CX]>, DwarfRegNum<[-2, 1, 1]>; 298 (add AX, CX, DX, SI, DI, BX, BP, SP, 339 def GR16_ABCD : RegisterClass<"X86", [i16], 16, (add AX, CX, DX, BX)> { 376 (add AX, CX, DX, SI, DI, BX, BP, SP)> {
|
/external/icu4c/data/region/ |
D | my.txt | 80 CX{"ခရစ်စမတ် ကျွန်း"}
|
D | ka.txt | 97 CX{"შობის კუნძული"}
|
D | pt_PT.txt | 31 CX{"Ilha do Natal"}
|
D | be.txt | 93 CX{"Калядаў востраў"}
|
D | hi.txt | 103 CX{"क्रिसमस द्वीप"}
|
D | or.txt | 101 CX{"ଖ୍ରୀଷ୍ଟମାସ ଆଇଲ୍ୟାଣ୍ଡ"}
|
D | zh.txt | 102 CX{"圣诞岛"}
|
D | ta.txt | 103 CX{"கிறிஸ்துமஸ் தீவு"}
|
D | ko.txt | 101 CX{"크리스마스섬"}
|
D | th.txt | 102 CX{"เกาะคริสต์มาส"}
|
D | el.txt | 102 CX{"Νήσος Χριστουγέννων"}
|
D | fa.txt | 101 CX{"جزیرهٔ کریسمس"}
|
D | mk.txt | 101 CX{"Божиќни Острови"}
|
/external/icu4c/data/misc/ |
D | metadata.txt | 103 "CX", 373 162{"CX"} 649 CXR{"CX"}
|