/linux-2.4.37.9/arch/sh/kernel/ |
D | io_keywest.c | 209 register unsigned long *buf=buffer, *endp = buf + count; in keywest_insl() local 210 while (buf < endp) in keywest_insl() 215 register unsigned short *buf=buffer, *endp = buf + (count << 1); in keywest_insl() local 216 while (buf < endp) { in keywest_insl() 225 register unsigned char *buf=buffer, *endp = buf + (count << 2); in keywest_insl() local 226 while (buf < endp) { in keywest_insl() 301 register unsigned long *buf=buffer, *endp = buf + count; in keywest_outsl() local 302 while (buf < endp) in keywest_outsl() 307 register unsigned short *buf=buffer, *endp = buf + (count << 1); in keywest_outsl() local 308 while (buf < endp) { in keywest_outsl() [all …]
|
/linux-2.4.37.9/lib/ |
D | vsprintf.c | 32 unsigned long simple_strtoul(const char *cp,char **endp,unsigned int base) in simple_strtoul() argument 52 if (endp) in simple_strtoul() 53 *endp = (char *)cp; in simple_strtoul() 63 long simple_strtol(const char *cp,char **endp,unsigned int base) in simple_strtol() argument 66 return -simple_strtoul(cp+1,endp,base); in simple_strtol() 67 return simple_strtoul(cp,endp,base); in simple_strtol() 76 unsigned long long simple_strtoull(const char *cp,char **endp,unsigned int base) in simple_strtoull() argument 96 if (endp) in simple_strtoull() 97 *endp = (char *)cp; in simple_strtoull() 107 long long simple_strtoll(const char *cp,char **endp,unsigned int base) in simple_strtoll() argument [all …]
|
/linux-2.4.37.9/arch/cris/lib/ |
D | usercopy.c | 365 char *endp; in __copy_user_zeroing() local 366 for (endp = dst + n; dst < endp; dst++) in __copy_user_zeroing()
|
/linux-2.4.37.9/arch/ppc64/boot/ |
D | prom.c | 305 unsigned long simple_strtoul(const char *cp,char **endp,unsigned int base) in simple_strtoul() argument 325 if (endp) in simple_strtoul() 326 *endp = (char *)cp; in simple_strtoul() 330 long simple_strtol(const char *cp,char **endp,unsigned int base) in simple_strtol() argument 333 return -simple_strtoul(cp+1,endp,base); in simple_strtol() 334 return simple_strtoul(cp,endp,base); in simple_strtol()
|
/linux-2.4.37.9/fs/xfs/ |
D | xfs_dir2_data.c | 83 char *endp; /* end of useful data */ in xfs_dir2_data_check() local 102 endp = (char *)lep; in xfs_dir2_data_check() 104 endp = (char *)d + mp->m_dirblksize; in xfs_dir2_data_check() 126 while (p < endp) { in xfs_dir2_data_check() 355 char *endp; /* end of block's data */ in xfs_dir2_data_freescan() local 372 endp = aendp; in xfs_dir2_data_freescan() 375 endp = (char *)XFS_DIR2_BLOCK_LEAF_P_ARCH(btp, ARCH_CONVERT); in xfs_dir2_data_freescan() 377 endp = (char *)d + mp->m_dirblksize; in xfs_dir2_data_freescan() 381 while (p < endp) { in xfs_dir2_data_freescan()
|
/linux-2.4.37.9/drivers/hotplug/ |
D | shpchprm_legacy.c | 76 void *endp; in detect_HRT_floating_pointer() local 80 endp = (end - sizeof(struct hrt) + 1); in detect_HRT_floating_pointer() 82 for (fp = begin; fp <= endp; fp += 16) { in detect_HRT_floating_pointer()
|
D | cpqphp_core.c | 136 void *endp; in detect_SMBIOS_pointer() local 140 endp = (end - sizeof(u32) + 1); in detect_SMBIOS_pointer() 142 for (fp = begin; fp <= endp; fp += 16) { in detect_SMBIOS_pointer()
|
D | cpqphp_pci.c | 97 void *endp; in detect_HRT_floating_pointer() local 101 endp = (end - sizeof(struct hrt) + 1); in detect_HRT_floating_pointer() 103 for (fp = begin; fp <= endp; fp += 16) { in detect_HRT_floating_pointer()
|
/linux-2.4.37.9/include/asm-ia64/ |
D | asmmacro.h | 19 .endp name
|
/linux-2.4.37.9/arch/ia64/sn/kernel/sn2/ |
D | ptc_deadlock.S | 82 .endp sn2_ptc_deadlock_recovery_core
|
/linux-2.4.37.9/arch/ia64/sn/fakeprom/ |
D | fpromasm.S | 246 .endp _start 402 .endp pal_emulator
|
/linux-2.4.37.9/net/irda/irnet/ |
D | irnet_ppp.c | 125 char * endp; in irnet_ctrl_write() local 132 addr = simple_strtoul(begp, &endp, 16); in irnet_ctrl_write() 134 DABORT(endp <= (start + 5), -EINVAL, in irnet_ctrl_write()
|
/linux-2.4.37.9/drivers/usb/serial/ |
D | keyspan.c | 1369 int endp; in keyspan_setup_urbs() local 1397 endp = d_details->indat_endpoints[i]; in keyspan_setup_urbs() 1398 for (j = 0; j <= d_details->indat_endp_flip; ++j, ++endp) { in keyspan_setup_urbs() 1400 (serial, endp, USB_DIR_IN, port, in keyspan_setup_urbs() 1408 endp = d_details->outdat_endpoints[i]; in keyspan_setup_urbs() 1409 for (j = 0; j <= d_details->outdat_endp_flip; ++j, ++endp) { in keyspan_setup_urbs() 1411 (serial, endp, USB_DIR_OUT, port, in keyspan_setup_urbs()
|
/linux-2.4.37.9/drivers/block/ |
D | amiflop.c | 698 ushort *ptr = (ushort *)raw, *endp = (ushort *)end; in scan_sync() local 700 while (ptr < endp && *ptr++ != 0x4489) in scan_sync() 702 if (ptr < endp) { in scan_sync() 703 while (*ptr == 0x4489 && ptr < endp) in scan_sync()
|
/linux-2.4.37.9/drivers/usb/storage/ |
D | transport.c | 472 int endp = usb_pipeendpoint(pipe) | (usb_pipein(pipe) << 7); in usb_stor_clear_halt() local 477 endp, NULL, 0); /* note: no 3*HZ timeout */ in usb_stor_clear_halt()
|
/linux-2.4.37.9/arch/mips/math-emu/ |
D | ieee754.h | 320 ieee754dp ieee754dp_fstr(const char *s, char **endp);
|
/linux-2.4.37.9/drivers/usb/ |
D | usb.c | 1949 int endp=usb_pipeendpoint(pipe)|(usb_pipein(pipe)<<7); in usb_clear_halt() local 1957 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0, endp, NULL, 0, HZ * SET_TIMEOUT); in usb_clear_halt() 1970 USB_REQ_GET_STATUS, USB_DIR_IN | USB_RECIP_ENDPOINT, 0, endp, in usb_clear_halt()
|
/linux-2.4.37.9/drivers/net/pcmcia/ |
D | wavelan_cs.c | 2154 char * endp; local 2176 lp->domain_id = simple_strtoul(essid, &endp, 16); 2178 if(endp > essid)
|