/linux-2.4.37.9/arch/x86_64/boot/ |
D | bootsect.S | 68 movw $256, %cx 124 # Note that %cx = 0 from rep movsw above. 134 xchgw %cx, %ax # %cx = track and sector 145 movw $9, %cx 167 movw sectors, %cx 168 subw (%si), %cx # (%si) = sread 176 call set_next # set %bx properly; it uses %ax,%cx,%dx 244 movw %bx, %cx 245 shr $4, %cx 246 add %cx, %ax # check offset [all …]
|
D | video.S | 766 movw %ax, %cx # CX=number of characters 833 movw %cx, %bp # BP=width of dest. line 841 movw %ax, %cx 994 movw $128, %cx # Iteration limit 1011 vesa2: pushw %cx 1012 movw %ax, %cx # Get mode information structure 1015 movw %cx, %bx # BX=mode number 1017 popw %cx 1104 movw %cx, %ax # Ok, store the mode 1189 movw $0x0f35, %cx # we store some constants in cl/ch [all …]
|
/linux-2.4.37.9/arch/i386/boot/ |
D | bootsect.S | 68 movw $256, %cx 124 # Note that %cx = 0 from rep movsw above. 134 xchgw %cx, %ax # %cx = track and sector 145 movw $9, %cx 167 movw sectors, %cx 168 subw (%si), %cx # (%si) = sread 176 call set_next # set %bx properly; it uses %ax,%cx,%dx 244 movw %bx, %cx 245 shr $4, %cx 246 add %cx, %ax # check offset [all …]
|
D | setup.S | 365 xorw %cx,%cx # BIOSes which dont clear/set 368 # or merely pass cx,dx though 374 cmpw $0x0, %cx # Kludge to handle BIOSes 378 movw %ax, %cx # seems to indicate AX/BX 417 movw $0x10, %cx 418 pushw %cx 426 popw %cx 445 movw $0x10, %cx 470 movw (%si), %cx 471 addw $2, %cx # table length is a short [all …]
|
D | video.S | 775 movw %ax, %cx # CX=number of characters 842 movw %cx, %bp # BP=width of dest. line 850 movw %ax, %cx 1007 movw $128, %cx # Iteration limit 1024 vesa2: pushw %cx 1025 movw %ax, %cx # Get mode information structure 1028 movw %cx, %bx # BX=mode number 1030 popw %cx 1117 movw %cx, %ax # Ok, store the mode 1202 movw $0x0f35, %cx # we store some constants in cl/ch [all …]
|
/linux-2.4.37.9/drivers/char/ |
D | toshiba.c | 362 unsigned short bx,cx; in tosh_get_machine_id() local 392 cx = isa_readw(address); in tosh_get_machine_id() 393 address = 0x000f0009+bx+cx; in tosh_get_machine_id() 394 cx = isa_readw(address); in tosh_get_machine_id() 395 address = 0x000f000a+cx; in tosh_get_machine_id() 396 cx = isa_readw(address); in tosh_get_machine_id() 400 id = ((cx & 0xff)<<8)+((cx & 0xff00)>>8); in tosh_get_machine_id()
|
/linux-2.4.37.9/arch/i386/math-emu/ |
D | reg_u_add.S | 55 negw %cx 78 cmpw $32,%cx /* shrd only works for 0..31 bits */ 88 cmpw $64,%cx 113 cmpw $65,%cx
|
D | reg_round.S | 482 movw EXP_UNDER+1,%cx 483 subw EXP(%edi),%cx 485 cmpw $64,%cx /* shrd only works for 0..31 bits */ 488 cmpw $32,%cx /* shrd only works for 0..31 bits */ 496 addw %cx,EXP(%edi) 509 addw %cx,EXP(%edi) 530 cmpw $64,%cx 534 addw %cx,EXP(%edi)
|
D | reg_u_sub.S | 78 cmpw $32,%cx /* shrd only works for 0..31 bits */ 88 cmpw $64,%cx 113 cmpw $65,%cx 225 subw %cx,EXP(%edi) /* Can get underflow here */
|
D | reg_norm.S | 52 subw %cx,EXP(%ebx) /* This can cause an underflow */ 129 subw %cx,EXP(%ebx) /* This can cause an underflow */
|
/linux-2.4.37.9/drivers/isdn/sc/ |
D | message.h | 38 #define IS_CM_MESSAGE(mesg, tx, cx, dx) \ argument 40 &&(mesg.class == cmRspClass##cx) \ 46 #define IS_CE_MESSAGE(mesg, tx, cx, dx) \ argument 48 &&(mesg.class == ceRspClass##cx) \
|
/linux-2.4.37.9/drivers/acpi/ |
D | processor.c | 406 struct acpi_processor_cx *cx = NULL; in acpi_processor_idle() local 421 cx = &(pr->power.states[pr->power.state]); in acpi_processor_idle() 463 if (pr->power.bm_activity & cx->demotion.threshold.bm) { in acpi_processor_idle() 465 next_state = cx->demotion.state; in acpi_processor_idle() 470 cx->usage++; in acpi_processor_idle() 502 sleep_ticks = ticks_elapsed(t1, t2) - cx->latency_ticks - C2_OVERHEAD; in acpi_processor_idle() 521 sleep_ticks = ticks_elapsed(t1, t2) - cx->latency_ticks - C3_OVERHEAD; in acpi_processor_idle() 538 if (cx->promotion.state) { in acpi_processor_idle() 539 if (sleep_ticks > cx->promotion.threshold.ticks) { in acpi_processor_idle() 540 cx->promotion.count++; in acpi_processor_idle() [all …]
|
/linux-2.4.37.9/arch/mips/math-emu/ |
D | ieee754int.h | 61 (ieee754_csr.cx = 0) 64 (ieee754_csr.cx |= (x),ieee754_csr.sx |= (x)) 70 (ieee754_csr.cx & ieee754_csr.mx)
|
D | ieee754.h | 329 unsigned cx:5; /* exceptions this operation */ member 350 return (ieee754_csr.cx); in ieee754_getcx() 357 return (ieee754_csr.cx & n); in ieee754_cxtest()
|
D | dp_sqrt.c | 139 oldcsr.cx |= IEEE754_INEXACT; in ieee754dp_sqrt()
|
D | cp1emu.c | 578 ieee754_csr_save.cx |= ieee754_csr.cx; \ 581 ieee754_csr.cx |= ieee754_csr_save.cx; \ 1305 ieee754_csr.cx = (ctx->sr >> 12) & 0x1f;
|
/linux-2.4.37.9/drivers/net/ |
D | plip.c | 545 unsigned int cx; in plip_receive() local 549 cx = nibble_timeout; in plip_receive() 558 if (--cx == 0) in plip_receive() 566 cx = nibble_timeout; in plip_receive() 575 if (--cx == 0) in plip_receive() 767 unsigned int cx; in plip_send() local 776 cx = nibble_timeout; in plip_send() 781 if (--cx == 0) in plip_send() 790 cx = nibble_timeout; in plip_send() 795 if (--cx == 0) in plip_send() [all …]
|
/linux-2.4.37.9/arch/i386/kernel/ |
D | apm.c | 660 int cx, dx, si; in apm_bios_call_simple() local 674 : "=a" (*eax), "=b" (error), "=c" (cx), "=d" (dx), in apm_bios_call_simple() 1619 unsigned short cx; in apm_get_info() local 1632 !(error = apm_get_power_status(&bx, &cx, &dx))) { in apm_get_info() 1635 if ((cx & 0xff) != 0xff) in apm_get_info() 1636 percentage = cx & 0xff; in apm_get_info() 1639 battery_flag = (cx >> 8) & 0xff; in apm_get_info() 1702 unsigned short cx; in apm() local 1777 error = apm_get_power_status(&bx, &cx, &dx); in apm() 1797 if ((cx & 0xff) == 0xff) in apm() [all …]
|
/linux-2.4.37.9/crypto/ |
D | twofish.c | 645 static int twofish_setkey(void *cx, const u8 *key, in twofish_setkey() argument 649 struct twofish_ctx *ctx = cx; in twofish_setkey() 804 static void twofish_encrypt(void *cx, u8 *out, const u8 *in) in twofish_encrypt() argument 806 struct twofish_ctx *ctx = cx; in twofish_encrypt() 839 static void twofish_decrypt(void *cx, u8 *out, const u8 *in) in twofish_decrypt() argument 841 struct twofish_ctx *ctx = cx; in twofish_decrypt()
|
/linux-2.4.37.9/arch/i386/lib/ |
D | checksum.S | 119 movw (%esi),%cx 367 SRC( movw (%esi), %cx ) 369 DST( movw %cx, (%edi) )
|
/linux-2.4.37.9/drivers/scsi/ |
D | i91uscsi.h | 767 unsigned short cx; member
|
/linux-2.4.37.9/arch/x86_64/ia32/ |
D | ia32_signal.c | 209 COPY(dx); COPY(cx); COPY(ip); in ia32_restore_sigcontext()
|
/linux-2.4.37.9/Documentation/networking/ |
D | README.sb1000 | 31 http://linuxpower.cx/~cable/
|
/linux-2.4.37.9/drivers/char/drm-4.0/ |
D | r128_state.c | 364 int cx, int cy, int cw, int ch, in r128_cce_dispatch_clear() argument
|
/linux-2.4.37.9/ |
D | MAINTAINERS | 727 M: matthew@wil.cx 1899 M: mid@auk.cx 1901 W: http://www.auk.cx/tms380tr/
|