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

1 2

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
mixcase.asm 2 MOV AX,5
addbyte.asm 0 ; AX forms
2 add ax,5
3 add ax,strict byte 5
4 add ax,strict word 5
5 add ax,-128
6 add ax,strict byte -128
7 add ax,strict word -128
8 add ax,0x7f
9 add ax,strict byte 0x7f
10 add ax,strict word 0x7
    [all...]
  /external/clang/test/Layout/
ms-x86-primary-bases.cpp 167 struct AX : B0X, B1X { int a; AX() : a(0xf000000A) {} virtual void f() { printf("A"); } };
172 // CHECK-NEXT: 0 | struct AX
184 // CHECK-X64-NEXT: 0 | struct AX
324 sizeof(AX)+
ms-x86-aligned-tail-padding.cpp 352 struct AX : B0X, virtual B2X, virtual B6X, virtual B3X {
354 AX() : a(0xf000000A) {}
364 // CHECK-NEXT: 0 | struct AX
365 // CHECK-NEXT: 0 | (AX vftable pointer)
369 // CHECK-NEXT: 24 | (AX vbtable pointer)
386 // CHECK-X64-NEXT: 0 | struct AX
387 // CHECK-X64-NEXT: 0 | (AX vftable pointer)
391 // CHECK-X64-NEXT: 24 | (AX vbtable pointer)
531 sizeof(AX)+
ms-x86-lazy-empty-nonvirtual-base.cpp 623 struct AX : B1X, B2X, B3X, B4X, virtual B0X {
625 AX() : a(0x0000000A) { printf(" A = %p\n", this); }
634 // CHECK-NEXT: 0 | struct AX
639 // CHECK-NEXT: 20 | (AX vbtable pointer)
650 // CHECK-X64-NEXT: 0 | struct AX
655 // CHECK-X64-NEXT: 24 | (AX vbtable pointer)
831 sizeof(AX)+
  /external/libpcap/msdos/
pkt_rx1.s 71 ; 1st time (AX=0) it requests an address where to put the packet
73 ; 2nd time (AX=1) the packet has been copied to this location (DS:SI)
93 cmp ax, 0 ; first call? (AX=0)
94 jne @post ; AX=1: second call, do post process
103 mov ax, [_rxInOfs]
104 add ax, RX_SIZE
105 cmp ax, LAST_OFS
107 mov ax, offset _pktRxBuf
109 cmp ax, [_rxOutOfs]
    [all...]
pkt_rx0.asm 96 mov ax, _rxInOfs ;; DI = current in-offset
97 add ax, SIZE RX_ELEMENT ;; point to next _pktRxBuf buffer
98 cmp ax, LAST_OFS ;; pointing past last ?
100 lea ax, _pktRxBuf ;; yes, point to 1st buffer
102 @noWrap: cmp ax, _rxOutOfs ;; in-ofs = out-ofs ?
105 mov newInOffset, ax ;; remember new input offset
115 ; 1st time (AX=0) it requests an address where to put the packet
117 ; 2nd time (AX=1) the packet has been copied to this location (DS:SI)
142 cmp ax, 0 ; first call? (AX=0)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
openid.php 30 * AX and SREG extensions are supported.
32 * These are arrays, with values being AX schema paths (the 'path' part of the URL).
54 , $ax = false, $sreg = false, $data;
223 # Does the server advertise support for either AX or SREG?
224 $this->ax = (bool) strpos($content, '<Type>http://openid.net/srv/ax/1.0</Type>'); variable
246 # AX can be used only with OpenID 2.0, so checking only SREG
335 $params['openid.ns.ax'] = 'http://openid.net/srv/ax/1.0';
336 $params['openid.ax.mode'] = 'fetch_request'
    [all...]
  /external/llvm/test/MC/X86/
intel-syntax.s 32 // CHECK: andw $12, %ax
33 and ax, 12
34 // CHECK: andw $-12, %ax
35 and ax, -12
36 // CHECK: andw $257, %ax
37 and ax, 257
38 // CHECK: andw $-257, %ax
39 and ax, -257
415 div AX, BX
423 idiv AX, B
    [all...]
  /external/clang/test/SemaCXX/
overloaded-operator.cpp 268 struct AX {
269 AX& operator ->(); // expected-note {{declared here}}
274 AX a;
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 409 /** \brief Solve a triangular Sylvester equation AX + XB = C
452 // Compute AX = \sum_{k=i+1}^m A_{ik} X_{kj}
453 Scalar AX;
455 AX = 0;
458 AX = AXmatrix(0,0);
470 X(i,j) = (C(i,j) - AX - XB) / (A(i,i) + B(j,j));
  /external/llvm/lib/Target/X86/
X86RegisterInfo.cpp 550 case X86::AH: case X86::AL: case X86::AX: case X86::EAX: case X86::RAX:
562 case X86::AH: case X86::AL: case X86::AX: case X86::EAX: case X86::RAX:
599 case X86::AH: case X86::AL: case X86::AX: case X86::EAX: case X86::RAX:
600 return X86::AX;
635 case X86::AH: case X86::AL: case X86::AX: case X86::EAX: case X86::RAX:
671 case X86::AH: case X86::AL: case X86::AX: case X86::EAX: case X86::RAX:
X86MCInstLower.cpp 238 /// \brief Simplify FOO $imm, %{al,ax,eax,rax} to FOO $imm, for instruction with
250 if (Reg != X86::AL && Reg != X86::AX && Reg != X86::EAX && Reg != X86::RAX)
268 case X86::MOVSX16rr8: // movsbw %al, %ax --> cbtw
269 if (Op0 == X86::AX && Op1 == X86::AL)
272 case X86::MOVSX32rr16: // movswl %ax, %eax --> cwtl
273 if (Op0 == X86::EAX && Op1 == X86::AX)
311 if (Reg != X86::AL && Reg != X86::AX && Reg != X86::EAX && Reg != X86::RAX)
724 OS.EmitInstruction(MCInstBuilder(Opc).addReg(X86::AX), STI);
    [all...]
X86SelectionDAGInfo.cpp 96 ValReg = X86::AX;
X86FastISel.cpp     [all...]
X86ISelDAGToDAG.cpp     [all...]
X86FrameLowering.cpp 301 if (Reg == X86::EAX || Reg == X86::AX ||
    [all...]
X86ISelLowering.cpp     [all...]
  /external/jpeg/
jmemdosa.asm 19 ; values, which everybody returns in AX.
59 mov word ptr [bx],ax ; save the handle
60 xor ax,ax ; return zero for OK
92 xor ax,ax ; return zero for OK
123 mov ax,4200h ; absolute seek
126 xor ax,ax ; return zero for OK
160 cmp ax,word ptr [bp+12] ; make sure all bytes were rea
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
RegionDataConstants.java 114 AX(new String[]{
118 "postprefix", "AX-",
    [all...]
  /external/chromium_org/v8/test/webkit/fast/regex/
pcre-test-4.js 727 var input0 = "AX";
728 var results = ["AX"];
745 var input0 = "AX";
746 var results = ["AX"];
766 var input0 = "AX";
767 var results = ["AX"];
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/x86/
assyntax.h 95 #define AX ax
96 #define EAX ax
157 #define AX %ax
443 #define IN_W CHOICE(inw (DX), inw ARG2(DX,AX), _WTOG in DX)
450 #define IN1_W(a) CHOICE(inw (a), inw ARG2(a,AX), _WTOG in a)
454 #define IN1_W(a) CHOICE(inw a, inw ARG2(a,AX), _WTOG in a)
556 #define OUT_W CHOICE(outw (DX), outw ARG2(AX,DX), _WTOG out DX)
562 #define OUT1_W(a) CHOICE(outw (a), outw ARG2(AX,a), _WTOG out a
    [all...]
  /external/mesa3d/src/mesa/x86/
assyntax.h 95 #define AX ax
96 #define EAX ax
157 #define AX %ax
443 #define IN_W CHOICE(inw (DX), inw ARG2(DX,AX), _WTOG in DX)
450 #define IN1_W(a) CHOICE(inw (a), inw ARG2(a,AX), _WTOG in a)
454 #define IN1_W(a) CHOICE(inw a, inw ARG2(a,AX), _WTOG in a)
556 #define OUT_W CHOICE(outw (DX), outw ARG2(AX,DX), _WTOG out DX)
562 #define OUT1_W(a) CHOICE(outw (a), outw ARG2(AX,a), _WTOG out a
    [all...]
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.h 117 ENTRY(AX) \
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp     [all...]

Completed in 802 milliseconds

1 2