Searched refs:ABS (Results 1 - 25 of 56) sorted by relevance

123

/external/grub/stage2/
H A Dapm.S70 movw %ax, ABS(EXT_C(apm_bios_info)) + 2
72 movl %ebx, ABS(EXT_C(apm_bios_info)) + 4
74 movw %cx, ABS(EXT_C(apm_bios_info)) + 8
76 movw %dx, ABS(EXT_C(apm_bios_info)) + 10
78 movl %esi, ABS(EXT_C(apm_bios_info)) + 14
80 movw %di, ABS(EXT_C(apm_bios_info)) + 18
102 movw %ax, ABS(EXT_C(apm_bios_info))
104 movw %cx, ABS(EXT_C(apm_bios_info)) + 12
109 andw $0xfffd, ABS(EXT_C(apm_bios_info)) + 12
H A Dstart_eltorito.S40 #define ABS(x) (x-_start+BOOTSEC_LOCATION) define
49 #define MSG(x) mov $ABS(x), %si; call message;
69 ljmp $0, $ABS(real_start)
93 mov %dl, ABS(BootDrive)
100 mov ABS(bi_length), %eax
107 mov ABS(bi_file), %eax
115 mov $ABS(firstlist - BOOTSEC_LISTSIZE), %si
117 mov ABS(BootDrive), %dl /* this makes sure %dl is our "boot" drive */
137 mov $ABS(dapa), %si /* Load up the DAPA */
145 cmp ABS(MaxTransfe
[all...]
H A Dstart.S35 # define ABS(x) (x-_start+0x2000)
37 # define ABS(x) (x-_start+0x8000)
41 #define MSG(x) movw $ABS(x), %si; call message
74 movw $ABS(firstlist - BOOTSEC_LISTSIZE), %di
H A Dasm.S42 # define ABS(x) ((x) - EXT_C(main) + 0x2200)
44 # define ABS(x) ((x) - EXT_C(main) + 0x8200)
71 ljmp $0, $ABS(codestart)
311 movl $ABS(int1_handler), %eax
436 movw $ABS(EXT_C(io_map)), %si
451 cmpw $(ABS(EXT_C(io_map)) + (IO_MAP_SIZE + 1) * 2), %si
482 movw %ax, ABS(int15_offset)
484 movw %ax, ABS(int15_segment)
487 movw $ABS(int15_handler), %ax
506 movw $ABS(int15_handle
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/fragment-shader/
H A Dfrag-abs.sh11 ABS OUT[0], TEMP[0]
H A Dfrag-lrp.sh8 ABS TEMP[0], IN[0]
H A Dfrag-tempx.sh12 ABS OUT[0], TEMPX[0][1]
/external/mesa3d/src/gallium/tests/graw/fragment-shader/
H A Dfrag-abs.sh11 ABS OUT[0], TEMP[0]
H A Dfrag-lrp.sh8 ABS TEMP[0], IN[0]
H A Dfrag-tempx.sh12 ABS OUT[0], TEMPX[0][1]
/external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/vertex-shader/
H A Dvert-abs.sh12 ABS OUT[0], TEMP[0]
H A Dvert-lrp.sh10 ABS TEMP[0], IN[0]
/external/mesa3d/src/gallium/tests/graw/vertex-shader/
H A Dvert-abs.sh12 ABS OUT[0], TEMP[0]
H A Dvert-lrp.sh10 ABS TEMP[0], IN[0]
/external/grub/stage1/
H A Dstage1.S30 #define ABS(x) (x-_start+0x7c00) define
33 #define MSG(x) movw $ABS(x), %si; call message
128 ljmp $0, $ABS(real_start)
145 MOV_MEM_TO_AL(ABS(boot_drive)) /* movb ABS(boot_drive), %al */
178 MOV_MEM_TO_AL(ABS(force_lba)) /* movb ABS(force_lba), %al */
189 movw $ABS(disk_address_packet), %si
194 movl ABS(stage2_sector), %ebx
250 movw $ABS(sector
[all...]
/external/speex/libspeex/
H A Dltp.h46 #define gain_3tap_to_1tap(g) (ABS(g[1]) + (g[0]>0 ? g[0] : -SHR16(g[0],1)) + (g[2]>0 ? g[2] : -SHR16(g[2],1)))
48 #define gain_3tap_to_1tap(g) (ABS(g[1]) + (g[0]>0 ? g[0] : -.5*g[0]) + (g[2]>0 ? g[2] : -.5*g[2]))
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Driprel1.asm47 mov rax, [qword val] ; 48 a1 ... (64-bit disp, ABS)
50 a32 mov rax, [qword val] ; 67 48 a1 ... (32-bit disp, ABS)
55 a64 mov rax, [qword val] ; 48 a1 ... (64-bit disp, ABS)
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dbezier.c112 double l = ABS(x4x1) + ABS(y4y1);
115 d = ABS((x4x1)*(b->y1 - b->y2) - (y4y1)*(b->x1 - b->x2))
116 + ABS((x4x1)*(b->y1 - b->y3) - (y4y1)*(b->x1 - b->x3));
118 d = ABS(b->x1 - b->x2) + ABS(b->y1 - b->y2) +
119 ABS(b->x1 - b->x3) + ABS(b->y1 - b->y3);
265 if (ABS(d - o2) > max_dist_line)
269 l = ABS(norma
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dbezier.c112 double l = ABS(x4x1) + ABS(y4y1);
115 d = ABS((x4x1)*(b->y1 - b->y2) - (y4y1)*(b->x1 - b->x2))
116 + ABS((x4x1)*(b->y1 - b->y3) - (y4y1)*(b->x1 - b->x3));
118 d = ABS(b->x1 - b->x2) + ABS(b->y1 - b->y2) +
119 ABS(b->x1 - b->x3) + ABS(b->y1 - b->y3);
265 if (ABS(d - o2) > max_dist_line)
269 l = ABS(norma
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
H A Dnasm-parser.h53 ABS, enumerator in enum:tokentype
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_blit.c35 #define ABS(X) ((X) < 0 ? -(X) : (X)) macro
115 const GLint srcWidth = ABS(srcX1 - srcX0);
116 const GLint dstWidth = ABS(dstX1 - dstX0);
117 const GLint srcHeight = ABS(srcY1 - srcY0);
118 const GLint dstHeight = ABS(dstY1 - dstY0);
495 const GLint srcWidth = ABS(srcX1 - srcX0);
496 const GLint dstWidth = ABS(dstX1 - dstX0);
497 const GLint srcHeight = ABS(srcY1 - srcY0);
498 const GLint dstHeight = ABS(dstY1 - dstY0);
/external/mesa3d/src/mesa/swrast/
H A Ds_blit.c35 #define ABS(X) ((X) < 0 ? -(X) : (X)) macro
115 const GLint srcWidth = ABS(srcX1 - srcX0);
116 const GLint dstWidth = ABS(dstX1 - dstX0);
117 const GLint srcHeight = ABS(srcY1 - srcY0);
118 const GLint dstHeight = ABS(dstY1 - dstY0);
495 const GLint srcWidth = ABS(srcX1 - srcX0);
496 const GLint dstWidth = ABS(dstX1 - dstX0);
497 const GLint srcHeight = ABS(srcY1 - srcY0);
498 const GLint dstHeight = ABS(dstY1 - dstY0);
/external/llvm/lib/MC/
H A DMCStreamer.cpp65 MCSymbol *ABS = Context.CreateTempSymbol();
66 EmitAssignment(ABS, Expr);
67 return MCSymbolRefExpr::Create(ABS, Context);
121 const MCExpr *ABS = ForceExpAbs(Value); local
122 EmitValue(ABS, Size);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_opcode_tmp.h72 OP11(ABS)
/external/chromium_org/third_party/opus/src/celt/tests/
H A Dtest_unit_cwrs32.c122 for(j=0;j<n;j++)sy+=ABS(y[j]);

Completed in 944 milliseconds

123