tag | line | file | source code |
s | 13 | arch/alpha/lib/memset.c | void * __constant_c_memset(void * s, unsigned long c, long count) |
s | 15 | arch/alpha/lib/memset.c | unsigned long xs = (unsigned long) s; |
s | 33 | arch/alpha/lib/memset.c | return s; |
s | 36 | arch/alpha/lib/memset.c | void * __memset(void * s,char c,size_t count) |
s | 38 | arch/alpha/lib/memset.c | char *xs = (char *) s; |
s | 43 | arch/alpha/lib/memset.c | return s; |
s | 22 | arch/i386/boot/compressed/gzip.h | # define memzero(s, n) memset ((s), 0, (n)) |
s | 27 | arch/i386/boot/compressed/gzip.h | # define memcpy(d, s, n) bcopy((s), (d), (n)) |
s | 29 | arch/i386/boot/compressed/gzip.h | # define memzero(s, n) bzero((s), (n)) |
s | 268 | arch/i386/boot/compressed/gzip.h | extern ulg updcrc OF((uch *s, unsigned n)); |
s | 273 | arch/i386/boot/compressed/gzip.h | extern char *strlwr OF((char *s)); |
s | 99 | arch/i386/boot/compressed/inflate.c | int huft_build(b, n, s, d, e, t, m) |
s | 102 | arch/i386/boot/compressed/inflate.c | unsigned s; /* number of simple-valued codes (0..s-1) */ |
s | 266 | arch/i386/boot/compressed/inflate.c | else if (*p < s) |
s | 273 | arch/i386/boot/compressed/inflate.c | r.e = (uch)e[*p - s]; /* non-simple--look up in lists */ |
s | 274 | arch/i386/boot/compressed/inflate.c | r.v.n = d[*p++ - s]; |
s | 128 | arch/i386/boot/compressed/misc.c | static void puts(const char *s) |
s | 136 | arch/i386/boot/compressed/misc.c | while ( ( c = *s++ ) != '\0' ) { |
s | 159 | arch/i386/boot/compressed/misc.c | __ptr_t memset(__ptr_t s, int c, size_t n) |
s | 162 | arch/i386/boot/compressed/misc.c | char *ss = (char*)s; |
s | 171 | arch/i386/boot/compressed/misc.c | char *d = (char *)__dest, *s = (char *)__src; |
s | 173 | arch/i386/boot/compressed/misc.c | for (i=0;i<__n;i++) d[i] = s[i]; |
s | 183 | arch/i386/boot/compressed/misc.c | ulg updcrc(s, n) |
s | 184 | arch/i386/boot/compressed/misc.c | uch *s; /* pointer to bytes to pump through */ |
s | 191 | arch/i386/boot/compressed/misc.c | if (s == NULL) { |
s | 196 | arch/i386/boot/compressed/misc.c | c = crc_32_tab[((int)c ^ (*s++)) & 0xff] ^ (c >> 8); |
s | 52 | arch/i386/boot/tools/build.c | short s[2]; |
s | 73 | arch/i386/boot/tools/build.c | return t.s[0]; |
s | 120 | arch/i386/math-emu/fpu_proto.h | extern void reg_load_bcd(char *s, FPU_REG *loaded_data); |
s | 23 | arch/i386/math-emu/fpu_system.h | #define LDT_DESCRIPTOR(s) (current->ldt[(s) >> 3]) |
s | 28 | arch/i386/math-emu/fpu_system.h | #define SEG_BASE_ADDR(s) (((s).b & 0xff000000) \ |
s | 29 | arch/i386/math-emu/fpu_system.h | | (((s).b & 0xff) << 16) | ((s).a >> 16)) |
s | 30 | arch/i386/math-emu/fpu_system.h | #define SEG_LIMIT(s) (((s).b & 0xff0000) | ((s).a & 0xffff)) |
s | 31 | arch/i386/math-emu/fpu_system.h | #define SEG_EXECUTE_ONLY(s) (((s).b & ((1 << 11) | (1 << 9))) == (1 << 11)) |
s | 32 | arch/i386/math-emu/fpu_system.h | #define SEG_WRITE_PERM(s) (((s).b & ((1 << 11) | (1 << 9))) == (1 << 9)) |
s | 33 | arch/i386/math-emu/fpu_system.h | #define SEG_EXPAND_DOWN(s) (((s).b & ((1 << 11) | (1 << 10))) \ |
s | 45 | arch/i386/math-emu/reg_ld_str.c | int reg_load_extended(long double *s, FPU_REG *loaded_data) |
s | 50 | arch/i386/math-emu/reg_ld_str.c | FPU_verify_area(VERIFY_READ, s, 10); |
s | 51 | arch/i386/math-emu/reg_ld_str.c | sigl = get_fs_long((unsigned long *) s); |
s | 52 | arch/i386/math-emu/reg_ld_str.c | sigh = get_fs_long(1 + (unsigned long *) s); |
s | 53 | arch/i386/math-emu/reg_ld_str.c | exp = get_fs_word(4 + (unsigned short *) s); |
s | 288 | arch/i386/math-emu/reg_ld_str.c | long long s; |
s | 292 | arch/i386/math-emu/reg_ld_str.c | ((unsigned long *)&s)[0] = get_fs_long((unsigned long *) _s); |
s | 293 | arch/i386/math-emu/reg_ld_str.c | ((unsigned long *)&s)[1] = get_fs_long(1 + (unsigned long *) _s); |
s | 296 | arch/i386/math-emu/reg_ld_str.c | if (s == 0) |
s | 299 | arch/i386/math-emu/reg_ld_str.c | if (s > 0) |
s | 303 | arch/i386/math-emu/reg_ld_str.c | s = -s; |
s | 308 | arch/i386/math-emu/reg_ld_str.c | significand(loaded_data) = s; |
s | 318 | arch/i386/math-emu/reg_ld_str.c | long s; |
s | 323 | arch/i386/math-emu/reg_ld_str.c | s = (long)get_fs_long((unsigned long *) _s); |
s | 326 | arch/i386/math-emu/reg_ld_str.c | if (s == 0) |
s | 329 | arch/i386/math-emu/reg_ld_str.c | if (s > 0) |
s | 333 | arch/i386/math-emu/reg_ld_str.c | s = -s; |
s | 338 | arch/i386/math-emu/reg_ld_str.c | loaded_data->sigh = s; |
s | 349 | arch/i386/math-emu/reg_ld_str.c | int s, e; |
s | 354 | arch/i386/math-emu/reg_ld_str.c | s = (short)get_fs_word((unsigned short *) _s); |
s | 357 | arch/i386/math-emu/reg_ld_str.c | if (s == 0) |
s | 360 | arch/i386/math-emu/reg_ld_str.c | if (s > 0) |
s | 364 | arch/i386/math-emu/reg_ld_str.c | s = -s; |
s | 369 | arch/i386/math-emu/reg_ld_str.c | loaded_data->sigh = s << 16; |
s | 379 | arch/i386/math-emu/reg_ld_str.c | void reg_load_bcd(char *s, FPU_REG *loaded_data) |
s | 386 | arch/i386/math-emu/reg_ld_str.c | FPU_verify_area(VERIFY_READ, s, 10); |
s | 392 | arch/i386/math-emu/reg_ld_str.c | bcd = (unsigned char)get_fs_byte((unsigned char *) s+pos); |
s | 401 | arch/i386/math-emu/reg_ld_str.c | ((unsigned char)get_fs_byte((unsigned char *) s+9)) & 0x80 ? |
s | 1149 | arch/i386/math-emu/reg_ld_str.c | char *fldenv(fpu_addr_modes addr_modes, char *s) |
s | 1160 | arch/i386/math-emu/reg_ld_str.c | FPU_verify_area(VERIFY_READ, s, 0x0e); |
s | 1161 | arch/i386/math-emu/reg_ld_str.c | control_word = get_fs_word((unsigned short *) s); |
s | 1162 | arch/i386/math-emu/reg_ld_str.c | partial_status = get_fs_word((unsigned short *) (s+2)); |
s | 1163 | arch/i386/math-emu/reg_ld_str.c | tag_word = get_fs_word((unsigned short *) (s+4)); |
s | 1164 | arch/i386/math-emu/reg_ld_str.c | instruction_address.offset = get_fs_word((unsigned short *) (s+6)); |
s | 1165 | arch/i386/math-emu/reg_ld_str.c | instruction_address.selector = get_fs_word((unsigned short *) (s+8)); |
s | 1166 | arch/i386/math-emu/reg_ld_str.c | operand_address.offset = get_fs_word((unsigned short *) (s+0x0a)); |
s | 1167 | arch/i386/math-emu/reg_ld_str.c | operand_address.selector = get_fs_word((unsigned short *) (s+0x0c)); |
s | 1169 | arch/i386/math-emu/reg_ld_str.c | s += 0x0e; |
s | 1180 | arch/i386/math-emu/reg_ld_str.c | FPU_verify_area(VERIFY_READ, s, 0x1c); |
s | 1181 | arch/i386/math-emu/reg_ld_str.c | control_word = get_fs_word((unsigned short *) s); |
s | 1182 | arch/i386/math-emu/reg_ld_str.c | partial_status = get_fs_word((unsigned short *) (s+4)); |
s | 1183 | arch/i386/math-emu/reg_ld_str.c | tag_word = get_fs_word((unsigned short *) (s+8)); |
s | 1184 | arch/i386/math-emu/reg_ld_str.c | instruction_address.offset = get_fs_long((unsigned long *) (s+0x0c)); |
s | 1185 | arch/i386/math-emu/reg_ld_str.c | instruction_address.selector = get_fs_word((unsigned short *) (s+0x10)); |
s | 1186 | arch/i386/math-emu/reg_ld_str.c | instruction_address.opcode = get_fs_word((unsigned short *) (s+0x12)); |
s | 1187 | arch/i386/math-emu/reg_ld_str.c | operand_address.offset = get_fs_long((unsigned long *) (s+0x14)); |
s | 1188 | arch/i386/math-emu/reg_ld_str.c | operand_address.selector = get_fs_long((unsigned long *) (s+0x18)); |
s | 1190 | arch/i386/math-emu/reg_ld_str.c | s += 0x1c; |
s | 1237 | arch/i386/math-emu/reg_ld_str.c | return s; |
s | 1245 | arch/i386/math-emu/reg_ld_str.c | char *s = fldenv(addr_modes, data_address); |
s | 1252 | arch/i386/math-emu/reg_ld_str.c | reg_load_extended((long double *)(s+i*10), ®s[stnr]); |
s | 1398 | drivers/block/aztcd.c | { int s; |
s | 1405 | drivers/block/aztcd.c | s = inb(DATA_PORT) & 0xFF; |
s | 1406 | drivers/block/aztcd.c | *result = (unsigned char) s; |
s | 59 | drivers/block/hd.c | #define OK_STATUS(s) (((s)&(STAT_OK|(BUSY_STAT|WRERR_STAT|ERR_STAT)))==STAT_OK) |
s | 258 | drivers/block/hd.c | static void fixstring (unsigned char *s, int bytecount) |
s | 260 | drivers/block/hd.c | unsigned char *p, *end = &s[bytecount &= ~1]; /* bytecount must be even */ |
s | 263 | drivers/block/hd.c | for (p = end ; p != s;) { |
s | 269 | drivers/block/hd.c | while (s != end && *s == ' ') |
s | 270 | drivers/block/hd.c | ++s; |
s | 273 | drivers/block/hd.c | while (s != end && *s) { |
s | 274 | drivers/block/hd.c | if (*s++ != ' ' || (s != end && *s && *s != ' ')) |
s | 275 | drivers/block/hd.c | *p++ = *(s-1); |
s | 969 | drivers/block/ide-cd.c | void lba_to_msf (int lba, byte *m, byte *s, byte *f) |
s | 975 | drivers/block/ide-cd.c | *s = lba / CD_FRAMES; |
s | 981 | drivers/block/ide-cd.c | int msf_to_lba (byte m, byte s, byte f) |
s | 983 | drivers/block/ide-cd.c | return (((m * CD_SECS) + s) * CD_FRAMES + f) - CD_BLOCK_OFFSET; |
s | 885 | drivers/block/ide.c | special_t *s = &dev->special; |
s | 887 | drivers/block/ide.c | printk("%s: do_special: 0x%02x\n", dev->name, s->all); |
s | 889 | drivers/block/ide.c | if (s->b.set_geometry) { |
s | 890 | drivers/block/ide.c | s->b.set_geometry = 0; |
s | 898 | drivers/block/ide.c | } else if (s->b.recalibrate) { |
s | 899 | drivers/block/ide.c | s->b.recalibrate = 0; |
s | 902 | drivers/block/ide.c | } else if (s->b.set_multmode) { |
s | 912 | drivers/block/ide.c | s->b.set_multmode = 0; |
s | 914 | drivers/block/ide.c | if (s->all) { |
s | 915 | drivers/block/ide.c | printk("%s: bad special flag: 0x%02x\n", dev->name, s->all); |
s | 916 | drivers/block/ide.c | s->all = 0; |
s | 1548 | drivers/block/ide.c | static void fixstring (byte *s, int bytecount, int byteswap) |
s | 1550 | drivers/block/ide.c | byte *p, *end = &s[bytecount &= ~1]; /* bytecount must be even */ |
s | 1554 | drivers/block/ide.c | for (p = end ; p != s;) { |
s | 1559 | drivers/block/ide.c | p = s; |
s | 1562 | drivers/block/ide.c | while (s != end && *s == ' ') |
s | 1563 | drivers/block/ide.c | ++s; |
s | 1566 | drivers/block/ide.c | while (s != end && *s) { |
s | 1567 | drivers/block/ide.c | if (*s++ != ' ' || (s != end && *s && *s != ' ')) |
s | 1568 | drivers/block/ide.c | *p++ = *(s-1); |
s | 1317 | drivers/block/mcd.c | int s; |
s | 1329 | drivers/block/mcd.c | s = inb(MCDPORT(0)) & 0xFF; |
s | 1330 | drivers/block/mcd.c | *result = (unsigned char) s; |
s | 4251 | drivers/block/sbpcd.c | void sbpcd_setup(char *s, int *p) |
s | 4254 | drivers/block/sbpcd.c | DPRINTF((DBG_INI,"SBPCD: sbpcd_setup called with %04X,%s\n",p[1], s)); |
s | 4256 | drivers/block/sbpcd.c | if (!strcmp(s,str_sb)) sbpro_type=1; |
s | 4257 | drivers/block/sbpcd.c | else if (!strcmp(s,str_sp)) sbpro_type=2; |
s | 338 | drivers/char/console.c | static void memsetw(void * s, unsigned short c, unsigned int count) |
s | 340 | drivers/char/console.c | unsigned short * addr = (unsigned short *) s; |
s | 737 | drivers/char/console.c | unsigned short * s = (unsigned short *) origin; |
s | 743 | drivers/char/console.c | writew(readw(s++),d++); |
s | 768 | drivers/char/console.c | unsigned short * s = (unsigned short *) (origin+video_size_row*(t+1)); |
s | 773 | drivers/char/console.c | writew(readw(s++), d++); |
s | 785 | drivers/char/console.c | unsigned short *d, *s; |
s | 791 | drivers/char/console.c | s = (unsigned short *) (origin+video_size_row*(b-1)); |
s | 795 | drivers/char/console.c | writew(readw(--s), --d); |
s | 2291 | drivers/char/console.c | static void highlight(const int currcons, const int s, const int e) |
s | 2295 | drivers/char/console.c | p1 = (unsigned char *)origin - hwscroll_offset + s + 1; |
s | 427 | drivers/char/tpqic02.c | static void tpqputs(unsigned long flags, char *s) |
s | 430 | drivers/char/tpqic02.c | printk(TPQIC02_NAME ": %s\n", s); |
s | 486 | drivers/char/tpqic02.c | static int decode_exception_nr(unsigned s) |
s | 491 | drivers/char/tpqic02.c | if ((s & exception_list[i].mask)==exception_list[i].code) |
s | 494 | drivers/char/tpqic02.c | printk(TPQIC02_NAME ": decode_exception_nr: exception(%x) not recognized\n", s); |
s | 507 | drivers/char/tpqic02.c | static void report_error(int s) |
s | 511 | drivers/char/tpqic02.c | if (s & TP_ST1) { |
s | 512 | drivers/char/tpqic02.c | if (s & TP_ILL) /* 12: Illegal command. FATAL */ |
s | 514 | drivers/char/tpqic02.c | if (s & TP_POR) /* 13: Reset occurred. FATAL */ |
s | 517 | drivers/char/tpqic02.c | else if (s & TP_ST0) { |
s | 518 | drivers/char/tpqic02.c | if (s & TP_EOR) { /* extra: 15: End of Recorded Media. CONTINUABLE */ |
s | 522 | drivers/char/tpqic02.c | else if (s & TP_EOM) /* 4: End Of Media. CONTINUABLE */ |
s | 524 | drivers/char/tpqic02.c | else if (s & TP_USL) /* 2: Drive not online. FATAL */ |
s | 526 | drivers/char/tpqic02.c | else if (s & TP_CNI) { /* 1: Cartridge not in place. FATAL */ |
s | 532 | drivers/char/tpqic02.c | else if (s & TP_UDA) { |
s | 533 | drivers/char/tpqic02.c | if (s & TP_BNL) { |
s | 534 | drivers/char/tpqic02.c | if (s & TP_NDT) { |
s | 535 | drivers/char/tpqic02.c | if (s & TP_BOM) /* 9: Read error. No data detected & EOM. CONTINUABLE */ |
s | 537 | drivers/char/tpqic02.c | else if (s & TP_EOM) /* 10: Read error. No data detected & BOM. CONTINUABLE */ |
s | 547 | drivers/char/tpqic02.c | if (s & TP_EOM) /* 5: Read or Write error. Rewind tape. FATAL */ |
s | 559 | drivers/char/tpqic02.c | else if (s & TP_FIL) { |
s | 560 | drivers/char/tpqic02.c | if (s & TP_MBD) { /* 14: Marginal block detected. CONTINUABLE */ |
s | 566 | drivers/char/tpqic02.c | else if (s & TP_WRP) /* 3: Write protected cartridge. FATAL */ |
s | 847 | drivers/char/tpqic02.c | int s, n; |
s | 881 | drivers/char/tpqic02.c | do s = inb_p(QIC02_STAT_PORT); |
s | 882 | drivers/char/tpqic02.c | while ((s & QIC02_STAT_MASK) == QIC02_STAT_MASK); /* wait for ready or exception */ |
s | 884 | drivers/char/tpqic02.c | if ((s & QIC02_STAT_EXCEPTION) == 0) { /* if exception */ |
s | 2250 | drivers/char/tpqic02.c | int s; |
s | 2307 | drivers/char/tpqic02.c | s = tp_sense(TP_WRP|TP_EOM|TP_BOM|TP_CNI|TP_EOR); |
s | 2309 | drivers/char/tpqic02.c | if (s == TE_OK) |
s | 2312 | drivers/char/tpqic02.c | s = tp_sense(TP_WRP|TP_EOM|TP_BOM|TP_CNI|TP_EOR); |
s | 2314 | drivers/char/tpqic02.c | if (s != TE_OK) { |
s | 2350 | drivers/char/tpqic02.c | s = do_qic_cmd(QCMD_REWIND, TIM_R); |
s | 2351 | drivers/char/tpqic02.c | if (s != 0) { |
s | 2397 | drivers/char/tpqic02.c | s = 0; |
s | 2400 | drivers/char/tpqic02.c | s = do_qic_cmd(QCMD_DENS_11, TIM_S); |
s | 2403 | drivers/char/tpqic02.c | s = do_qic_cmd(QCMD_DENS_24, TIM_S); |
s | 2406 | drivers/char/tpqic02.c | s = do_qic_cmd(QCMD_DENS_120, TIM_S); |
s | 2409 | drivers/char/tpqic02.c | s = do_qic_cmd(QCMD_DENS_150, TIM_S); |
s | 2412 | drivers/char/tpqic02.c | s = do_qic_cmd(QCMD_DENS_300, TIM_S); |
s | 2415 | drivers/char/tpqic02.c | s = do_qic_cmd(QCMD_DENS_600, TIM_S); |
s | 2418 | drivers/char/tpqic02.c | s = do_qic_cmd(QCMD_RETEN, TIM_R); |
s | 2420 | drivers/char/tpqic02.c | if (s != 0) { |
s | 342 | drivers/char/vt.c | u_char s; |
s | 349 | drivers/char/vt.c | if ((s = get_fs_byte((char *) &a->kb_table)) >= MAX_NR_KEYMAPS) |
s | 351 | drivers/char/vt.c | key_map = key_maps[s]; |
s | 366 | drivers/char/vt.c | u_char s; |
s | 376 | drivers/char/vt.c | if ((s = get_fs_byte((char *) &a->kb_table)) >= MAX_NR_KEYMAPS) |
s | 381 | drivers/char/vt.c | key_map = key_maps[s]; |
s | 382 | drivers/char/vt.c | if (s && key_map) { |
s | 383 | drivers/char/vt.c | key_maps[s] = 0; |
s | 403 | drivers/char/vt.c | if (!(key_map = key_maps[s])) { |
s | 413 | drivers/char/vt.c | key_maps[s] = key_map; |
s | 429 | drivers/char/vt.c | if (!s && (KTYP(ov) == KT_SHIFT || KTYP(v) == KT_SHIFT)) |
s | 453 | drivers/net/ni52.c | unsigned long s; |
s | 484 | drivers/net/ni52.c | s = jiffies; /* warning: only active with interrupts on !! */ |
s | 486 | drivers/net/ni52.c | if(jiffies-s > 30) break; |
s | 510 | drivers/net/ni52.c | s = jiffies; |
s | 512 | drivers/net/ni52.c | if(jiffies-s > 30) break; |
s | 534 | drivers/net/ni52.c | s = jiffies; |
s | 536 | drivers/net/ni52.c | if(jiffies - s > 30) { |
s | 626 | drivers/net/ni52.c | s = jiffies; |
s | 628 | drivers/net/ni52.c | if(jiffies - s > 30) |
s | 342 | drivers/net/ni65.c | tmdp->u.s.status = XMIT_START | XMIT_END; |
s | 350 | drivers/net/ni65.c | rmdp->u.s.status = RCV_OWN; |
s | 458 | drivers/net/ni65.c | tmdstat = tmdp->u.s.status; |
s | 504 | drivers/net/ni65.c | while(!( (rmdstat = rmdp->u.s.status) & RCV_OWN)) |
s | 514 | drivers/net/ni65.c | rmdp->u.s.status = RCV_OWN; /* change owner */ |
s | 523 | drivers/net/ni65.c | rmdp->u.s.status = RCV_OWN; |
s | 541 | drivers/net/ni65.c | rmdp->u.s.status = RCV_OWN; |
s | 550 | drivers/net/ni65.c | rmdp->u.s.status = RCV_OWN; |
s | 614 | drivers/net/ni65.c | tmdp->u.s.status = XMIT_OWN | XMIT_START | XMIT_END; |
s | 621 | drivers/net/ni65.c | if( !((p->tmdhead + p->tmdnum)->u.s.status & XMIT_OWN) ) |
s | 109 | drivers/net/ni65.h | } s; |
s | 124 | drivers/net/ni65.h | } s; |
s | 1051 | drivers/net/sk_g16.c | tmdp->u.s.status = TX_STP | TX_ENP; |
s | 1071 | drivers/net/sk_g16.c | rmdp->u.s.status = RX_OWN; |
s | 1269 | drivers/net/sk_g16.c | tmdp->u.s.status = TX_OWN | TX_STP | TX_ENP; |
s | 1281 | drivers/net/sk_g16.c | if (! ((p->tmdhead + p->tmdnum)->u.s.status & TX_OWN) ) |
s | 1403 | drivers/net/sk_g16.c | tmdstat = tmdp->u.s.status & 0xff00; /* filter out status bits 15:08 */ |
s | 1522 | drivers/net/sk_g16.c | while (!( (rmdstat = rmdp->u.s.status) & RX_OWN)) |
s | 1552 | drivers/net/sk_g16.c | rmdp->u.s.status = RX_OWN; /* Relinquish ownership to LANCE */ |
s | 1564 | drivers/net/sk_g16.c | rmdp->u.s.status = RX_OWN; /* Relinquish ownership to LANCE */ |
s | 1583 | drivers/net/sk_g16.c | rmdp->u.s.status = RX_OWN; /* Relinquish ownership to LANCE */ |
s | 1621 | drivers/net/sk_g16.c | rmdp->u.s.status = RX_OWN; |
s | 141 | drivers/net/sk_g16.h | } s; |
s | 159 | drivers/net/sk_g16.h | } s; |
s | 781 | drivers/net/slip.c | slip_esc(unsigned char *s, unsigned char *d, int len) |
s | 800 | drivers/net/slip.c | switch(c = *s++) { |
s | 819 | drivers/net/slip.c | slip_unesc(struct slip *sl, unsigned char s) |
s | 822 | drivers/net/slip.c | switch(s) { |
s | 836 | drivers/net/slip.c | s = ESC; |
s | 841 | drivers/net/slip.c | s = END; |
s | 847 | drivers/net/slip.c | sl->rbuff[sl->rcount++] = s; |
s | 862 | drivers/net/slip.c | slip_esc6(unsigned char *s, unsigned char *d, int len) |
s | 883 | drivers/net/slip.c | v = (v << 8) | s[i]; |
s | 900 | drivers/net/slip.c | slip_unesc6(struct slip *sl, unsigned char s) |
s | 904 | drivers/net/slip.c | if (s == 0x70) { |
s | 911 | drivers/net/slip.c | } else if (s >= 0x30 && s < 0x70) { |
s | 912 | drivers/net/slip.c | sl->xdata = (sl->xdata << 6) | ((s - 0x30) & 0x3F); |
s | 687 | drivers/net/wavelan.c | #define SC(t,s,n) if (sizeof(t) != s) return n |
s | 2058 | drivers/scsi/53c7,8xx.c | TOKEN(ms,3), TOKEN(rp,2), TOKEN(rs,2), TOKEN(s,0), TOKEN(tb,0), TOKEN(te,0) |
s | 2263 | drivers/scsi/aha152x.c | int s; |
s | 2272 | drivers/scsi/aha152x.c | s=GETPORT(SCSISEQ); |
s | 2274 | drivers/scsi/aha152x.c | if( s & TEMODEO ) printk("TARGET MODE "); |
s | 2275 | drivers/scsi/aha152x.c | if( s & ENSELO ) printk("SELO "); |
s | 2276 | drivers/scsi/aha152x.c | if( s & ENSELI ) printk("SELI "); |
s | 2277 | drivers/scsi/aha152x.c | if( s & ENRESELI ) printk("RESELI "); |
s | 2278 | drivers/scsi/aha152x.c | if( s & ENAUTOATNO ) printk("AUTOATNO "); |
s | 2279 | drivers/scsi/aha152x.c | if( s & ENAUTOATNI ) printk("AUTOATNI "); |
s | 2280 | drivers/scsi/aha152x.c | if( s & ENAUTOATNP ) printk("AUTOATNP "); |
s | 2281 | drivers/scsi/aha152x.c | if( s & SCSIRSTO ) printk("SCSIRSTO "); |
s | 2285 | drivers/scsi/aha152x.c | s=GETPORT(SCSISIG); |
s | 2286 | drivers/scsi/aha152x.c | switch(s & P_MASK) |
s | 2316 | drivers/scsi/aha152x.c | s=GETPORT(SSTAT0); |
s | 2317 | drivers/scsi/aha152x.c | if( s & TARGET ) printk("TARGET "); |
s | 2318 | drivers/scsi/aha152x.c | if( s & SELDO ) printk("SELDO "); |
s | 2319 | drivers/scsi/aha152x.c | if( s & SELDI ) printk("SELDI "); |
s | 2320 | drivers/scsi/aha152x.c | if( s & SELINGO ) printk("SELINGO "); |
s | 2321 | drivers/scsi/aha152x.c | if( s & SWRAP ) printk("SWRAP "); |
s | 2322 | drivers/scsi/aha152x.c | if( s & SDONE ) printk("SDONE "); |
s | 2323 | drivers/scsi/aha152x.c | if( s & SPIORDY ) printk("SPIORDY "); |
s | 2324 | drivers/scsi/aha152x.c | if( s & DMADONE ) printk("DMADONE "); |
s | 2326 | drivers/scsi/aha152x.c | s=GETPORT(SSTAT1); |
s | 2327 | drivers/scsi/aha152x.c | if( s & SELTO ) printk("SELTO "); |
s | 2328 | drivers/scsi/aha152x.c | if( s & ATNTARG ) printk("ATNTARG "); |
s | 2329 | drivers/scsi/aha152x.c | if( s & SCSIRSTI ) printk("SCSIRSTI "); |
s | 2330 | drivers/scsi/aha152x.c | if( s & PHASEMIS ) printk("PHASEMIS "); |
s | 2331 | drivers/scsi/aha152x.c | if( s & BUSFREE ) printk("BUSFREE "); |
s | 2332 | drivers/scsi/aha152x.c | if( s & SCSIPERR ) printk("SCSIPERR "); |
s | 2333 | drivers/scsi/aha152x.c | if( s & PHASECHG ) printk("PHASECHG "); |
s | 2334 | drivers/scsi/aha152x.c | if( s & REQINIT ) printk("REQINIT "); |
s | 2340 | drivers/scsi/aha152x.c | s=GETPORT(SSTAT0) & GETPORT(SIMODE0); |
s | 2342 | drivers/scsi/aha152x.c | if( s & TARGET ) printk("TARGET "); |
s | 2343 | drivers/scsi/aha152x.c | if( s & SELDO ) printk("SELDO "); |
s | 2344 | drivers/scsi/aha152x.c | if( s & SELDI ) printk("SELDI "); |
s | 2345 | drivers/scsi/aha152x.c | if( s & SELINGO ) printk("SELINGO "); |
s | 2346 | drivers/scsi/aha152x.c | if( s & SWRAP ) printk("SWRAP "); |
s | 2347 | drivers/scsi/aha152x.c | if( s & SDONE ) printk("SDONE "); |
s | 2348 | drivers/scsi/aha152x.c | if( s & SPIORDY ) printk("SPIORDY "); |
s | 2349 | drivers/scsi/aha152x.c | if( s & DMADONE ) printk("DMADONE "); |
s | 2351 | drivers/scsi/aha152x.c | s=GETPORT(SSTAT1) & GETPORT(SIMODE1); |
s | 2353 | drivers/scsi/aha152x.c | if( s & SELTO ) printk("SELTO "); |
s | 2354 | drivers/scsi/aha152x.c | if( s & ATNTARG ) printk("ATNTARG "); |
s | 2355 | drivers/scsi/aha152x.c | if( s & SCSIRSTI ) printk("SCSIRSTI "); |
s | 2356 | drivers/scsi/aha152x.c | if( s & PHASEMIS ) printk("PHASEMIS "); |
s | 2357 | drivers/scsi/aha152x.c | if( s & BUSFREE ) printk("BUSFREE "); |
s | 2358 | drivers/scsi/aha152x.c | if( s & SCSIPERR ) printk("SCSIPERR "); |
s | 2359 | drivers/scsi/aha152x.c | if( s & PHASECHG ) printk("PHASECHG "); |
s | 2360 | drivers/scsi/aha152x.c | if( s & REQINIT ) printk("REQINIT "); |
s | 2365 | drivers/scsi/aha152x.c | s=GETPORT(SXFRCTL0); |
s | 2366 | drivers/scsi/aha152x.c | if( s & SCSIEN ) printk("SCSIEN "); |
s | 2367 | drivers/scsi/aha152x.c | if( s & DMAEN ) printk("DMAEN "); |
s | 2368 | drivers/scsi/aha152x.c | if( s & CH1 ) printk("CH1 "); |
s | 2369 | drivers/scsi/aha152x.c | if( s & CLRSTCNT ) printk("CLRSTCNT "); |
s | 2370 | drivers/scsi/aha152x.c | if( s & SPIOEN ) printk("SPIOEN "); |
s | 2371 | drivers/scsi/aha152x.c | if( s & CLRCH1 ) printk("CLRCH1 "); |
s | 2376 | drivers/scsi/aha152x.c | s=GETPORT(SCSISIG); |
s | 2377 | drivers/scsi/aha152x.c | if( s & ATNI ) printk("ATNI "); |
s | 2378 | drivers/scsi/aha152x.c | if( s & SELI ) printk("SELI "); |
s | 2379 | drivers/scsi/aha152x.c | if( s & BSYI ) printk("BSYI "); |
s | 2380 | drivers/scsi/aha152x.c | if( s & REQI ) printk("REQI "); |
s | 2381 | drivers/scsi/aha152x.c | if( s & ACKI ) printk("ACKI "); |
s | 2388 | drivers/scsi/aha152x.c | s=GETPORT(SSTAT2); |
s | 2389 | drivers/scsi/aha152x.c | if( s & SOFFSET) printk("SOFFSET "); |
s | 2390 | drivers/scsi/aha152x.c | if( s & SEMPTY) printk("SEMPTY "); |
s | 2391 | drivers/scsi/aha152x.c | if( s & SFULL) printk("SFULL "); |
s | 2392 | drivers/scsi/aha152x.c | printk("); SFCNT ( %d ); ", s & (SFULL|SFCNT) ); |
s | 2396 | drivers/scsi/aha152x.c | s=GETPORT(SSTAT4); |
s | 2397 | drivers/scsi/aha152x.c | if( s & SYNCERR) printk("SYNCERR "); |
s | 2398 | drivers/scsi/aha152x.c | if( s & FWERR) printk("FWERR "); |
s | 2399 | drivers/scsi/aha152x.c | if( s & FRERR) printk("FRERR "); |
s | 2406 | drivers/scsi/aha152x.c | s=GETPORT(DMACNTRL0); |
s | 2407 | drivers/scsi/aha152x.c | printk( "%s ", s & _8BIT ? "8BIT" : "16BIT" ); |
s | 2408 | drivers/scsi/aha152x.c | printk( "%s ", s & DMA ? "DMA" : "PIO" ); |
s | 2409 | drivers/scsi/aha152x.c | printk( "%s ", s & WRITE_READ ? "WRITE" : "READ" ); |
s | 2410 | drivers/scsi/aha152x.c | if( s & ENDMA ) printk("ENDMA "); |
s | 2411 | drivers/scsi/aha152x.c | if( s & INTEN ) printk("INTEN "); |
s | 2412 | drivers/scsi/aha152x.c | if( s & RSTFIFO ) printk("RSTFIFO "); |
s | 2413 | drivers/scsi/aha152x.c | if( s & SWINT ) printk("SWINT "); |
s | 2420 | drivers/scsi/aha152x.c | s=GETPORT(DMACNTRL1); |
s | 2421 | drivers/scsi/aha152x.c | if( s & PWRDWN ) printk("PWRDN "); |
s | 2425 | drivers/scsi/aha152x.c | printk("STK ( %d ); ", s & 0xf); |
s | 2428 | drivers/scsi/aha152x.c | s=GETPORT(DMASTAT); |
s | 2429 | drivers/scsi/aha152x.c | if( s & ATDONE ) printk("ATDONE "); |
s | 2430 | drivers/scsi/aha152x.c | if( s & WORDRDY ) printk("WORDRDY "); |
s | 2431 | drivers/scsi/aha152x.c | if( s & DFIFOFULL ) printk("DFIFOFULL "); |
s | 2432 | drivers/scsi/aha152x.c | if( s & DFIFOEMP ) printk("DFIFOEMP "); |
s | 2446 | drivers/scsi/aha152x.c | int s; |
s | 2450 | drivers/scsi/aha152x.c | s=GETPORT(SIMODE0); |
s | 2451 | drivers/scsi/aha152x.c | if( s & ENSELDO ) printk("ENSELDO "); |
s | 2452 | drivers/scsi/aha152x.c | if( s & ENSELDI ) printk("ENSELDI "); |
s | 2453 | drivers/scsi/aha152x.c | if( s & ENSELINGO ) printk("ENSELINGO "); |
s | 2454 | drivers/scsi/aha152x.c | if( s & ENSWRAP ) printk("ENSWRAP "); |
s | 2455 | drivers/scsi/aha152x.c | if( s & ENSDONE ) printk("ENSDONE "); |
s | 2456 | drivers/scsi/aha152x.c | if( s & ENSPIORDY ) printk("ENSPIORDY "); |
s | 2457 | drivers/scsi/aha152x.c | if( s & ENDMADONE ) printk("ENDMADONE "); |
s | 2459 | drivers/scsi/aha152x.c | s=GETPORT(SIMODE1); |
s | 2460 | drivers/scsi/aha152x.c | if( s & ENSELTIMO ) printk("ENSELTIMO "); |
s | 2461 | drivers/scsi/aha152x.c | if( s & ENATNTARG ) printk("ENATNTARG "); |
s | 2462 | drivers/scsi/aha152x.c | if( s & ENPHASEMIS ) printk("ENPHASEMIS "); |
s | 2463 | drivers/scsi/aha152x.c | if( s & ENBUSFREE ) printk("ENBUSFREE "); |
s | 2464 | drivers/scsi/aha152x.c | if( s & ENSCSIPERR ) printk("ENSCSIPERR "); |
s | 2465 | drivers/scsi/aha152x.c | if( s & ENPHASECHG ) printk("ENPHASECHG "); |
s | 2466 | drivers/scsi/aha152x.c | if( s & ENREQINIT ) printk("ENREQINIT "); |
s | 316 | drivers/scsi/aha274x.c | void aha274x_setup(char *s, int *dummy) |
s | 329 | drivers/scsi/aha274x.c | for (p = strtok(s, ","); p; p = strtok(NULL, ",")) { |
s | 63 | drivers/scsi/aic7770.c | void error(char *s) |
s | 65 | drivers/scsi/aic7770.c | fprintf(stderr, "%s: %s at line %d\n", filename, s, lineno); |
s | 85 | drivers/scsi/aic7770.c | char *Strdup(char *s) |
s | 87 | drivers/scsi/aic7770.c | char *p = (char *)Malloc(strlen(s) + 1); |
s | 88 | drivers/scsi/aic7770.c | strcpy(p, s); |
s | 236 | drivers/scsi/buslogic.c | int s = inb(STATUS(base)), i = inb(INTERRUPT(base)); |
s | 238 | drivers/scsi/buslogic.c | buslogic_printk("status=%02X intrflags=%02X\n", s, i); |
s | 102 | drivers/scsi/constants.c | int i,s; |
s | 104 | drivers/scsi/constants.c | for ( i = 1, s = COMMAND_SIZE(command[0]); i < s; ++i) |
s | 366 | drivers/scsi/constants.c | int i, s; |
s | 377 | drivers/scsi/constants.c | s = sense_buffer[7] + 8; |
s | 378 | drivers/scsi/constants.c | if(s > sizeof(SCpnt->sense_buffer)) s = sizeof(SCpnt->sense_buffer); |
s | 437 | drivers/scsi/constants.c | s = 4; |
s | 443 | drivers/scsi/constants.c | for (i = 0; i < s; ++i) |
s | 511 | drivers/scsi/pas16.c | register unsigned char *s = src; |
s | 517 | drivers/scsi/pas16.c | outsb( reg, s, i ); |
s | 361 | drivers/scsi/t128.c | T_DATA_REG_OFFSET), *s = src; |
s | 371 | drivers/scsi/t128.c | *reg = *s++; |
s | 1005 | drivers/scsi/ultrastor.c | unsigned int s = config.heads * config.sectors; |
s | 1009 | drivers/scsi/ultrastor.c | dkinfo[2] = size / s; /* Ignore partial cylinders */ |
s | 55 | drivers/sound/os.h | #define COPY_FROM_USER(d, s, o, c) memcpy_fromfs((d), &((s)[o]), (c)) |
s | 56 | drivers/sound/os.h | #define COPY_TO_USER(d, o, s, c) memcpy_tofs(&((d)[o]), (s), (c)) |
s | 57 | drivers/sound/os.h | #define IOCTL_FROM_USER(d, s, o, c) memcpy_fromfs((d), &((s)[o]), (c)) |
s | 58 | drivers/sound/os.h | #define IOCTL_TO_USER(d, o, s, c) memcpy_tofs(&((d)[o]), (s), (c)) |
s | 57 | drivers/sound/sound_switch.c | put_status (char *s) |
s | 61 | drivers/sound/sound_switch.c | for (l = 0; l < 256, s[l]; l++); /* |
s | 68 | drivers/sound/sound_switch.c | memcpy (&status_buf[status_len], s, l); |
s | 57 | fs/ext/inode.c | struct super_block *ext_read_super(struct super_block *s,void *data, |
s | 62 | fs/ext/inode.c | int dev = s->s_dev,block; |
s | 64 | fs/ext/inode.c | lock_super(s); |
s | 67 | fs/ext/inode.c | s->s_dev=0; |
s | 68 | fs/ext/inode.c | unlock_super(s); |
s | 73 | fs/ext/inode.c | s->s_blocksize = 1024; |
s | 74 | fs/ext/inode.c | s->s_blocksize_bits = 10; |
s | 75 | fs/ext/inode.c | s->u.ext_sb.s_ninodes = es->s_ninodes; |
s | 76 | fs/ext/inode.c | s->u.ext_sb.s_nzones = es->s_nzones; |
s | 77 | fs/ext/inode.c | s->u.ext_sb.s_firstdatazone = es->s_firstdatazone; |
s | 78 | fs/ext/inode.c | s->u.ext_sb.s_log_zone_size = es->s_log_zone_size; |
s | 79 | fs/ext/inode.c | s->u.ext_sb.s_max_size = es->s_max_size; |
s | 80 | fs/ext/inode.c | s->s_magic = es->s_magic; |
s | 81 | fs/ext/inode.c | s->u.ext_sb.s_firstfreeblocknumber = es->s_firstfreeblock; |
s | 82 | fs/ext/inode.c | s->u.ext_sb.s_freeblockscount = es->s_freeblockscount; |
s | 83 | fs/ext/inode.c | s->u.ext_sb.s_firstfreeinodenumber = es->s_firstfreeinode; |
s | 84 | fs/ext/inode.c | s->u.ext_sb.s_freeinodescount = es->s_freeinodescount; |
s | 86 | fs/ext/inode.c | if (s->s_magic != EXT_SUPER_MAGIC) { |
s | 87 | fs/ext/inode.c | s->s_dev = 0; |
s | 88 | fs/ext/inode.c | unlock_super(s); |
s | 94 | fs/ext/inode.c | if (!s->u.ext_sb.s_firstfreeblocknumber) |
s | 95 | fs/ext/inode.c | s->u.ext_sb.s_firstfreeblock = NULL; |
s | 97 | fs/ext/inode.c | if (!(s->u.ext_sb.s_firstfreeblock = bread(dev, |
s | 98 | fs/ext/inode.c | s->u.ext_sb.s_firstfreeblocknumber, BLOCK_SIZE))) { |
s | 100 | fs/ext/inode.c | s->s_dev = 0; |
s | 101 | fs/ext/inode.c | unlock_super(s); |
s | 104 | fs/ext/inode.c | if (!s->u.ext_sb.s_firstfreeinodenumber) |
s | 105 | fs/ext/inode.c | s->u.ext_sb.s_firstfreeinodeblock = NULL; |
s | 107 | fs/ext/inode.c | block = 2 + (s->u.ext_sb.s_firstfreeinodenumber - 1) / EXT_INODES_PER_BLOCK; |
s | 108 | fs/ext/inode.c | if (!(s->u.ext_sb.s_firstfreeinodeblock = bread(dev, block, BLOCK_SIZE))) { |
s | 110 | fs/ext/inode.c | brelse(s->u.ext_sb.s_firstfreeblock); |
s | 111 | fs/ext/inode.c | s->s_dev = 0; |
s | 112 | fs/ext/inode.c | unlock_super (s); |
s | 116 | fs/ext/inode.c | unlock_super(s); |
s | 118 | fs/ext/inode.c | s->s_dev = dev; |
s | 119 | fs/ext/inode.c | s->s_op = &ext_sops; |
s | 120 | fs/ext/inode.c | if (!(s->s_mounted = iget(s,EXT_ROOT_INO))) { |
s | 121 | fs/ext/inode.c | s->s_dev=0; |
s | 125 | fs/ext/inode.c | return s; |
s | 242 | fs/hpfs/hpfs_fs.c | static unsigned count_bitmap(struct super_block *s); |
s | 333 | fs/hpfs/hpfs_fs.c | struct super_block *hpfs_read_super(struct super_block *s, |
s | 357 | fs/hpfs/hpfs_fs.c | s->s_dev = 0; |
s | 365 | fs/hpfs/hpfs_fs.c | lock_super(s); |
s | 366 | fs/hpfs/hpfs_fs.c | dev = s->s_dev; |
s | 443 | fs/hpfs/hpfs_fs.c | s->s_flags |= MS_RDONLY; |
s | 449 | fs/hpfs/hpfs_fs.c | s->s_magic = HPFS_SUPER_MAGIC; |
s | 450 | fs/hpfs/hpfs_fs.c | s->s_blocksize = 512; |
s | 451 | fs/hpfs/hpfs_fs.c | s->s_blocksize_bits = 9; |
s | 452 | fs/hpfs/hpfs_fs.c | s->s_op = (struct super_operations *) &hpfs_sops; |
s | 458 | fs/hpfs/hpfs_fs.c | s->s_hpfs_root = dir_ino(superblock->root); |
s | 459 | fs/hpfs/hpfs_fs.c | s->s_hpfs_fs_size = superblock->n_sectors; |
s | 460 | fs/hpfs/hpfs_fs.c | s->s_hpfs_dirband_size = superblock->n_dir_band / 4; |
s | 461 | fs/hpfs/hpfs_fs.c | s->s_hpfs_dmap = superblock->dir_band_bitmap; |
s | 462 | fs/hpfs/hpfs_fs.c | s->s_hpfs_bitmaps = superblock->bitmaps; |
s | 463 | fs/hpfs/hpfs_fs.c | s->s_hpfs_uid = uid; |
s | 464 | fs/hpfs/hpfs_fs.c | s->s_hpfs_gid = gid; |
s | 465 | fs/hpfs/hpfs_fs.c | s->s_hpfs_mode = 0777 & ~umask; |
s | 466 | fs/hpfs/hpfs_fs.c | s->s_hpfs_n_free = -1; |
s | 467 | fs/hpfs/hpfs_fs.c | s->s_hpfs_n_free_dnodes = -1; |
s | 468 | fs/hpfs/hpfs_fs.c | s->s_hpfs_lowercase = lowercase; |
s | 469 | fs/hpfs/hpfs_fs.c | s->s_hpfs_conv = conv; |
s | 483 | fs/hpfs/hpfs_fs.c | s->s_mounted = iget(s, s->s_hpfs_root); |
s | 484 | fs/hpfs/hpfs_fs.c | unlock_super(s); |
s | 486 | fs/hpfs/hpfs_fs.c | if (!s->s_mounted) { |
s | 488 | fs/hpfs/hpfs_fs.c | s->s_dev = 0; |
s | 496 | fs/hpfs/hpfs_fs.c | root_dno = fnode_dno(dev, s->s_hpfs_root); |
s | 498 | fs/hpfs/hpfs_fs.c | de = map_dirent(s->s_mounted, root_dno, "\001\001", 2, &qbh); |
s | 502 | fs/hpfs/hpfs_fs.c | s->s_dev = 0; |
s | 506 | fs/hpfs/hpfs_fs.c | s->s_mounted->i_atime = local_to_gmt(de->read_date); |
s | 507 | fs/hpfs/hpfs_fs.c | s->s_mounted->i_mtime = local_to_gmt(de->write_date); |
s | 508 | fs/hpfs/hpfs_fs.c | s->s_mounted->i_ctime = local_to_gmt(de->creation_date); |
s | 511 | fs/hpfs/hpfs_fs.c | return s; |
s | 520 | fs/hpfs/hpfs_fs.c | s->s_dev = 0; |
s | 521 | fs/hpfs/hpfs_fs.c | unlock_super(s); |
s | 624 | fs/hpfs/hpfs_fs.c | struct super_block *s = inode->i_sb; |
s | 641 | fs/hpfs/hpfs_fs.c | inode->i_uid = s->s_hpfs_uid; |
s | 642 | fs/hpfs/hpfs_fs.c | inode->i_gid = s->s_hpfs_gid; |
s | 643 | fs/hpfs/hpfs_fs.c | inode->i_mode = s->s_hpfs_mode; |
s | 644 | fs/hpfs/hpfs_fs.c | inode->i_hpfs_conv = s->s_hpfs_conv; |
s | 718 | fs/hpfs/hpfs_fs.c | static void hpfs_put_super(struct super_block *s) |
s | 720 | fs/hpfs/hpfs_fs.c | lock_super(s); |
s | 721 | fs/hpfs/hpfs_fs.c | s->s_dev = 0; |
s | 722 | fs/hpfs/hpfs_fs.c | unlock_super(s); |
s | 730 | fs/hpfs/hpfs_fs.c | static void hpfs_statfs(struct super_block *s, struct statfs *buf) |
s | 736 | fs/hpfs/hpfs_fs.c | if (s->s_hpfs_n_free == -1) { |
s | 737 | fs/hpfs/hpfs_fs.c | s->s_hpfs_n_free = count_bitmap(s); |
s | 738 | fs/hpfs/hpfs_fs.c | s->s_hpfs_n_free_dnodes = |
s | 739 | fs/hpfs/hpfs_fs.c | count_one_bitmap(s->s_dev, s->s_hpfs_dmap); |
s | 746 | fs/hpfs/hpfs_fs.c | put_fs_long(s->s_magic, &buf->f_type); |
s | 748 | fs/hpfs/hpfs_fs.c | put_fs_long(s->s_hpfs_fs_size, &buf->f_blocks); |
s | 749 | fs/hpfs/hpfs_fs.c | put_fs_long(s->s_hpfs_n_free, &buf->f_bfree); |
s | 750 | fs/hpfs/hpfs_fs.c | put_fs_long(s->s_hpfs_n_free, &buf->f_bavail); |
s | 751 | fs/hpfs/hpfs_fs.c | put_fs_long(s->s_hpfs_dirband_size, &buf->f_files); |
s | 752 | fs/hpfs/hpfs_fs.c | put_fs_long(s->s_hpfs_n_free_dnodes, &buf->f_ffree); |
s | 760 | fs/hpfs/hpfs_fs.c | static int hpfs_remount_fs(struct super_block *s, int *flags, char *data) |
s | 804 | fs/hpfs/hpfs_fs.c | static unsigned count_bitmap(struct super_block *s) |
s | 813 | fs/hpfs/hpfs_fs.c | n_bands = (s->s_hpfs_fs_size + 0x3fff) >> 14; |
s | 819 | fs/hpfs/hpfs_fs.c | bitmaps = map_4sectors(s->s_dev, s->s_hpfs_bitmaps, &qbh); |
s | 832 | fs/hpfs/hpfs_fs.c | count += count_one_bitmap(s->s_dev, bitmaps[n]); |
s | 185 | fs/isofs/inode.c | struct super_block *isofs_read_super(struct super_block *s,void *data, |
s | 192 | fs/isofs/inode.c | int dev=s->s_dev; |
s | 208 | fs/isofs/inode.c | s->s_dev = 0; |
s | 233 | fs/isofs/inode.c | lock_super(s); |
s | 235 | fs/isofs/inode.c | s->u.isofs_sb.s_high_sierra = high_sierra = 0; /* default is iso9660 */ |
s | 244 | fs/isofs/inode.c | s->s_dev=0; |
s | 247 | fs/isofs/inode.c | unlock_super(s); |
s | 262 | fs/isofs/inode.c | s->u.isofs_sb.s_high_sierra = 1; |
s | 284 | fs/isofs/inode.c | s->s_dev = 0; |
s | 285 | fs/isofs/inode.c | unlock_super(s); |
s | 297 | fs/isofs/inode.c | s->u.isofs_sb.s_nzones = isonum_733 (h_pri->volume_space_size); |
s | 298 | fs/isofs/inode.c | s->u.isofs_sb.s_log_zone_size = isonum_723 (h_pri->logical_block_size); |
s | 299 | fs/isofs/inode.c | s->u.isofs_sb.s_max_size = isonum_733(h_pri->volume_space_size); |
s | 306 | fs/isofs/inode.c | s->u.isofs_sb.s_nzones = isonum_733 (pri->volume_space_size); |
s | 307 | fs/isofs/inode.c | s->u.isofs_sb.s_log_zone_size = isonum_723 (pri->logical_block_size); |
s | 308 | fs/isofs/inode.c | s->u.isofs_sb.s_max_size = isonum_733(pri->volume_space_size); |
s | 311 | fs/isofs/inode.c | s->u.isofs_sb.s_ninodes = 0; /* No way to figure this out easily */ |
s | 315 | fs/isofs/inode.c | switch (s -> u.isofs_sb.s_log_zone_size) |
s | 316 | fs/isofs/inode.c | { case 512: s -> u.isofs_sb.s_log_zone_size = 9; break; |
s | 317 | fs/isofs/inode.c | case 1024: s -> u.isofs_sb.s_log_zone_size = 10; break; |
s | 318 | fs/isofs/inode.c | case 2048: s -> u.isofs_sb.s_log_zone_size = 11; break; |
s | 321 | fs/isofs/inode.c | printk("Bad logical zone size %ld\n", s -> u.isofs_sb.s_log_zone_size); |
s | 327 | fs/isofs/inode.c | s->u.isofs_sb.s_firstdatazone = (isonum_733( rootp->extent) |
s | 328 | fs/isofs/inode.c | << s -> u.isofs_sb.s_log_zone_size); |
s | 329 | fs/isofs/inode.c | s->s_magic = ISOFS_SUPER_MAGIC; |
s | 336 | fs/isofs/inode.c | s->s_flags |= MS_RDONLY /* | MS_NODEV | MS_NOSUID */; |
s | 341 | fs/isofs/inode.c | s->u.isofs_sb.s_max_size, |
s | 342 | fs/isofs/inode.c | 1UL << s->u.isofs_sb.s_log_zone_size); |
s | 344 | fs/isofs/inode.c | s->u.isofs_sb.s_firstdatazone >> s -> u.isofs_sb.s_log_zone_size, |
s | 345 | fs/isofs/inode.c | isonum_733 (rootp->extent) << s -> u.isofs_sb.s_log_zone_size); |
s | 347 | fs/isofs/inode.c | unlock_super(s); |
s | 350 | fs/isofs/inode.c | s->s_dev = dev; |
s | 351 | fs/isofs/inode.c | s->s_op = &isofs_sops; |
s | 352 | fs/isofs/inode.c | s->u.isofs_sb.s_mapping = opt.map; |
s | 353 | fs/isofs/inode.c | s->u.isofs_sb.s_rock = (opt.rock == 'y' ? 1 : 0); |
s | 354 | fs/isofs/inode.c | s->u.isofs_sb.s_conversion = opt.conversion; |
s | 355 | fs/isofs/inode.c | s->u.isofs_sb.s_cruft = opt.cruft; |
s | 356 | fs/isofs/inode.c | s->u.isofs_sb.s_uid = opt.uid; |
s | 357 | fs/isofs/inode.c | s->u.isofs_sb.s_gid = opt.gid; |
s | 362 | fs/isofs/inode.c | s->u.isofs_sb.s_mode = opt.mode & 0777; |
s | 363 | fs/isofs/inode.c | s->s_blocksize = opt.blocksize; |
s | 364 | fs/isofs/inode.c | s->s_blocksize_bits = blocksize_bits; |
s | 365 | fs/isofs/inode.c | s->s_mounted = iget(s, isonum_733 (rootp->extent) << s -> u.isofs_sb.s_log_zone_size); |
s | 366 | fs/isofs/inode.c | unlock_super(s); |
s | 368 | fs/isofs/inode.c | if (!(s->s_mounted)) { |
s | 369 | fs/isofs/inode.c | s->s_dev=0; |
s | 375 | fs/isofs/inode.c | if(!check_disk_change(s->s_dev)) { |
s | 376 | fs/isofs/inode.c | return s; |
s | 380 | fs/isofs/inode.c | s->s_dev = 0; |
s | 381 | fs/isofs/inode.c | unlock_super(s); |
s | 124 | fs/minix/inode.c | struct super_block *minix_read_super(struct super_block *s,void *data, |
s | 129 | fs/minix/inode.c | int i,dev=s->s_dev,block; |
s | 134 | fs/minix/inode.c | lock_super(s); |
s | 137 | fs/minix/inode.c | s->s_dev=0; |
s | 138 | fs/minix/inode.c | unlock_super(s); |
s | 144 | fs/minix/inode.c | s->u.minix_sb.s_ms = ms; |
s | 145 | fs/minix/inode.c | s->u.minix_sb.s_sbh = bh; |
s | 146 | fs/minix/inode.c | s->u.minix_sb.s_mount_state = ms->s_state; |
s | 147 | fs/minix/inode.c | s->s_blocksize = 1024; |
s | 148 | fs/minix/inode.c | s->s_blocksize_bits = 10; |
s | 149 | fs/minix/inode.c | s->u.minix_sb.s_ninodes = ms->s_ninodes; |
s | 150 | fs/minix/inode.c | s->u.minix_sb.s_nzones = ms->s_nzones; |
s | 151 | fs/minix/inode.c | s->u.minix_sb.s_imap_blocks = ms->s_imap_blocks; |
s | 152 | fs/minix/inode.c | s->u.minix_sb.s_zmap_blocks = ms->s_zmap_blocks; |
s | 153 | fs/minix/inode.c | s->u.minix_sb.s_firstdatazone = ms->s_firstdatazone; |
s | 154 | fs/minix/inode.c | s->u.minix_sb.s_log_zone_size = ms->s_log_zone_size; |
s | 155 | fs/minix/inode.c | s->u.minix_sb.s_max_size = ms->s_max_size; |
s | 156 | fs/minix/inode.c | s->s_magic = ms->s_magic; |
s | 157 | fs/minix/inode.c | if (s->s_magic == MINIX_SUPER_MAGIC) { |
s | 158 | fs/minix/inode.c | s->u.minix_sb.s_dirsize = 16; |
s | 159 | fs/minix/inode.c | s->u.minix_sb.s_namelen = 14; |
s | 160 | fs/minix/inode.c | } else if (s->s_magic == MINIX_SUPER_MAGIC2) { |
s | 161 | fs/minix/inode.c | s->u.minix_sb.s_dirsize = 32; |
s | 162 | fs/minix/inode.c | s->u.minix_sb.s_namelen = 30; |
s | 164 | fs/minix/inode.c | s->s_dev = 0; |
s | 165 | fs/minix/inode.c | unlock_super(s); |
s | 173 | fs/minix/inode.c | s->u.minix_sb.s_imap[i] = NULL; |
s | 175 | fs/minix/inode.c | s->u.minix_sb.s_zmap[i] = NULL; |
s | 177 | fs/minix/inode.c | for (i=0 ; i < s->u.minix_sb.s_imap_blocks ; i++) |
s | 178 | fs/minix/inode.c | if ((s->u.minix_sb.s_imap[i]=bread(dev,block,BLOCK_SIZE)) != NULL) |
s | 182 | fs/minix/inode.c | for (i=0 ; i < s->u.minix_sb.s_zmap_blocks ; i++) |
s | 183 | fs/minix/inode.c | if ((s->u.minix_sb.s_zmap[i]=bread(dev,block,BLOCK_SIZE)) != NULL) |
s | 187 | fs/minix/inode.c | if (block != 2+s->u.minix_sb.s_imap_blocks+s->u.minix_sb.s_zmap_blocks) { |
s | 189 | fs/minix/inode.c | brelse(s->u.minix_sb.s_imap[i]); |
s | 191 | fs/minix/inode.c | brelse(s->u.minix_sb.s_zmap[i]); |
s | 192 | fs/minix/inode.c | s->s_dev=0; |
s | 193 | fs/minix/inode.c | unlock_super(s); |
s | 199 | fs/minix/inode.c | set_bit(0,s->u.minix_sb.s_imap[0]->b_data); |
s | 200 | fs/minix/inode.c | set_bit(0,s->u.minix_sb.s_zmap[0]->b_data); |
s | 201 | fs/minix/inode.c | unlock_super(s); |
s | 203 | fs/minix/inode.c | s->s_dev = dev; |
s | 204 | fs/minix/inode.c | s->s_op = &minix_sops; |
s | 205 | fs/minix/inode.c | s->s_mounted = iget(s,MINIX_ROOT_INO); |
s | 206 | fs/minix/inode.c | if (!s->s_mounted) { |
s | 207 | fs/minix/inode.c | s->s_dev = 0; |
s | 213 | fs/minix/inode.c | if (!(s->s_flags & MS_RDONLY)) { |
s | 216 | fs/minix/inode.c | s->s_dirt = 1; |
s | 218 | fs/minix/inode.c | if (!(s->u.minix_sb.s_mount_state & MINIX_VALID_FS)) |
s | 221 | fs/minix/inode.c | else if (s->u.minix_sb.s_mount_state & MINIX_ERROR_FS) |
s | 224 | fs/minix/inode.c | return s; |
s | 38 | fs/msdos/misc.c | void fs_panic(struct super_block *s,char *msg) |
s | 42 | fs/msdos/misc.c | not_ro = !(s->s_flags & MS_RDONLY); |
s | 43 | fs/msdos/misc.c | if (not_ro) s->s_flags |= MS_RDONLY; |
s | 45 | fs/msdos/misc.c | s->s_dev,s->s_covered->i_dev,s->s_covered->i_ino,msg); |
s | 31 | fs/msdos/msbuffer.h | #define bread(d,b,s) msdos_bread(sb,b) |
s | 32 | fs/msdos/msbuffer.h | #define getblk(d,b,s) msdos_getblk(sb,b) |
s | 78 | fs/proc/inode.c | struct super_block *proc_read_super(struct super_block *s,void *data, |
s | 81 | fs/proc/inode.c | lock_super(s); |
s | 82 | fs/proc/inode.c | s->s_blocksize = 1024; |
s | 83 | fs/proc/inode.c | s->s_blocksize_bits = 10; |
s | 84 | fs/proc/inode.c | s->s_magic = PROC_SUPER_MAGIC; |
s | 85 | fs/proc/inode.c | s->s_op = &proc_sops; |
s | 86 | fs/proc/inode.c | unlock_super(s); |
s | 87 | fs/proc/inode.c | if (!(s->s_mounted = iget(s,PROC_ROOT_INO))) { |
s | 88 | fs/proc/inode.c | s->s_dev = 0; |
s | 92 | fs/proc/inode.c | parse_options(data, &s->s_mounted->i_uid, &s->s_mounted->i_gid); |
s | 93 | fs/proc/inode.c | return s; |
s | 221 | fs/super.c | struct super_block * s; |
s | 225 | fs/super.c | s = 0+super_blocks; |
s | 226 | fs/super.c | while (s < NR_SUPER+super_blocks) |
s | 227 | fs/super.c | if (s->s_dev == dev) { |
s | 228 | fs/super.c | wait_on_super(s); |
s | 229 | fs/super.c | if (s->s_dev == dev) |
s | 230 | fs/super.c | return s; |
s | 231 | fs/super.c | s = 0+super_blocks; |
s | 233 | fs/super.c | s++; |
s | 260 | fs/super.c | struct super_block * s; |
s | 266 | fs/super.c | s = get_super(dev); |
s | 267 | fs/super.c | if (s) |
s | 268 | fs/super.c | return s; |
s | 274 | fs/super.c | for (s = 0+super_blocks ;; s++) { |
s | 275 | fs/super.c | if (s >= NR_SUPER+super_blocks) |
s | 277 | fs/super.c | if (!s->s_dev) |
s | 280 | fs/super.c | s->s_dev = dev; |
s | 281 | fs/super.c | s->s_flags = flags; |
s | 282 | fs/super.c | if (!type->read_super(s,data, silent)) { |
s | 283 | fs/super.c | s->s_dev = 0; |
s | 286 | fs/super.c | s->s_dev = dev; |
s | 287 | fs/super.c | s->s_covered = NULL; |
s | 288 | fs/super.c | s->s_rd_only = 0; |
s | 289 | fs/super.c | s->s_dirt = 0; |
s | 290 | fs/super.c | s->s_type = type; |
s | 291 | fs/super.c | return s; |
s | 390 | fs/umsdos/inode.c | struct super_block *s, |
s | 409 | fs/umsdos/inode.c | sb = msdos_read_super(s,data,silent); |
s | 417 | fs/umsdos/inode.c | if (s == super_blocks){ |
s | 68 | fs/xiafs/inode.c | struct super_block *xiafs_read_super(struct super_block *s, void *data, |
s | 76 | fs/xiafs/inode.c | dev=s->s_dev; |
s | 77 | fs/xiafs/inode.c | lock_super(s); |
s | 82 | fs/xiafs/inode.c | s->s_dev=0; |
s | 83 | fs/xiafs/inode.c | unlock_super(s); |
s | 89 | fs/xiafs/inode.c | s->s_magic = sp->s_magic; |
s | 90 | fs/xiafs/inode.c | if (s->s_magic != _XIAFS_SUPER_MAGIC) { |
s | 91 | fs/xiafs/inode.c | s->s_dev = 0; |
s | 92 | fs/xiafs/inode.c | unlock_super(s); |
s | 100 | fs/xiafs/inode.c | s->s_blocksize = sp->s_zone_size; |
s | 101 | fs/xiafs/inode.c | s->s_blocksize_bits = 10 + sp->s_zone_shift; |
s | 102 | fs/xiafs/inode.c | if (s->s_blocksize != BLOCK_SIZE && |
s | 103 | fs/xiafs/inode.c | (s->s_blocksize == 1024 || s->s_blocksize == 2048 || |
s | 104 | fs/xiafs/inode.c | s->s_blocksize == 4096)) { |
s | 106 | fs/xiafs/inode.c | set_blocksize(dev, s->s_blocksize); |
s | 107 | fs/xiafs/inode.c | bh = bread (dev, 0, s->s_blocksize); |
s | 114 | fs/xiafs/inode.c | s->u.xiafs_sb.s_nzones = sp->s_nzones; |
s | 115 | fs/xiafs/inode.c | s->u.xiafs_sb.s_ninodes = sp->s_ninodes; |
s | 116 | fs/xiafs/inode.c | s->u.xiafs_sb.s_ndatazones = sp->s_ndatazones; |
s | 117 | fs/xiafs/inode.c | s->u.xiafs_sb.s_imap_zones = sp->s_imap_zones; |
s | 118 | fs/xiafs/inode.c | s->u.xiafs_sb.s_zmap_zones = sp->s_zmap_zones; |
s | 119 | fs/xiafs/inode.c | s->u.xiafs_sb.s_firstdatazone = sp->s_firstdatazone; |
s | 120 | fs/xiafs/inode.c | s->u.xiafs_sb.s_zone_shift = sp->s_zone_shift; |
s | 121 | fs/xiafs/inode.c | s->u.xiafs_sb.s_max_size = sp->s_max_size; |
s | 124 | fs/xiafs/inode.c | s->u.xiafs_sb.s_imap_buf[i] = NULL; |
s | 125 | fs/xiafs/inode.c | s->u.xiafs_sb.s_imap_iznr[i] = -1; |
s | 128 | fs/xiafs/inode.c | s->u.xiafs_sb.s_zmap_buf[i] = NULL; |
s | 129 | fs/xiafs/inode.c | s->u.xiafs_sb.s_zmap_zznr[i] = -1; |
s | 132 | fs/xiafs/inode.c | if ( s->u.xiafs_sb.s_imap_zones > _XIAFS_IMAP_SLOTS ) |
s | 133 | fs/xiafs/inode.c | s->u.xiafs_sb.s_imap_cached=1; |
s | 135 | fs/xiafs/inode.c | s->u.xiafs_sb.s_imap_cached=0; |
s | 136 | fs/xiafs/inode.c | for (i=0 ; i < s->u.xiafs_sb.s_imap_zones ; i++) { |
s | 137 | fs/xiafs/inode.c | if (!(s->u.xiafs_sb.s_imap_buf[i]=bread(dev, z++, XIAFS_ZSIZE(s)))) |
s | 139 | fs/xiafs/inode.c | s->u.xiafs_sb.s_imap_iznr[i]=i; |
s | 142 | fs/xiafs/inode.c | if ( s->u.xiafs_sb.s_zmap_zones > _XIAFS_ZMAP_SLOTS ) |
s | 143 | fs/xiafs/inode.c | s->u.xiafs_sb.s_zmap_cached=1; |
s | 145 | fs/xiafs/inode.c | s->u.xiafs_sb.s_zmap_cached=0; |
s | 146 | fs/xiafs/inode.c | for (i=0 ; i < s->u.xiafs_sb.s_zmap_zones ; i++) { |
s | 147 | fs/xiafs/inode.c | if (!(s->u.xiafs_sb.s_zmap_buf[i]=bread(dev, z++, XIAFS_ZSIZE(s)))) |
s | 149 | fs/xiafs/inode.c | s->u.xiafs_sb.s_zmap_zznr[i]=i; |
s | 153 | fs/xiafs/inode.c | s->s_dev = dev; |
s | 154 | fs/xiafs/inode.c | s->s_op = &xiafs_sops; |
s | 155 | fs/xiafs/inode.c | s->s_mounted = iget(s, _XIAFS_ROOT_INO); |
s | 156 | fs/xiafs/inode.c | if (!s->s_mounted) |
s | 158 | fs/xiafs/inode.c | unlock_super(s); |
s | 160 | fs/xiafs/inode.c | return s; |
s | 164 | fs/xiafs/inode.c | brelse(s->u.xiafs_sb.s_imap_buf[i]); |
s | 166 | fs/xiafs/inode.c | brelse(s->u.xiafs_sb.s_zmap_buf[i]); |
s | 167 | fs/xiafs/inode.c | s->s_dev=0; |
s | 168 | fs/xiafs/inode.c | unlock_super(s); |
s | 7 | include/asm-alpha/string.h | #define memset(s, c, count) \ |
s | 9 | include/asm-alpha/string.h | __constant_c_memset((s),(0x01010101UL*(unsigned char)c),(count)) : \ |
s | 10 | include/asm-alpha/string.h | __memset((s),(c),(count))) |
s | 16 | include/asm-i386/bugs.h | static void no_halt(char *s, int *ints) |
s | 21 | include/asm-i386/bugs.h | static void no_387(char *s, int *ints) |
s | 44 | include/asm-i386/io.h | #define __OUT1(s,x) \ |
s | 45 | include/asm-i386/io.h | extern inline void __out##s(unsigned x value, unsigned short port) { |
s | 47 | include/asm-i386/io.h | #define __OUT2(s,s1,s2) \ |
s | 48 | include/asm-i386/io.h | __asm__ __volatile__ ("out" #s " %" s1 "0,%" s2 "1" |
s | 50 | include/asm-i386/io.h | #define __OUT(s,s1,x) \ |
s | 51 | include/asm-i386/io.h | __OUT1(s,x) __OUT2(s,s1,"w") : : "a" (value), "d" (port)); } \ |
s | 52 | include/asm-i386/io.h | __OUT1(s##c,x) __OUT2(s,s1,"") : : "a" (value), "i" (port)); } \ |
s | 53 | include/asm-i386/io.h | __OUT1(s##_p,x) __OUT2(s,s1,"w") : : "a" (value), "d" (port)); SLOW_DOWN_IO; } \ |
s | 54 | include/asm-i386/io.h | __OUT1(s##c_p,x) __OUT2(s,s1,"") : : "a" (value), "i" (port)); SLOW_DOWN_IO; } |
s | 56 | include/asm-i386/io.h | #define __IN1(s) \ |
s | 57 | include/asm-i386/io.h | extern inline unsigned int __in##s(unsigned short port) { unsigned int _v; |
s | 59 | include/asm-i386/io.h | #define __IN2(s,s1,s2) \ |
s | 60 | include/asm-i386/io.h | __asm__ __volatile__ ("in" #s " %" s2 "1,%" s1 "0" |
s | 62 | include/asm-i386/io.h | #define __IN(s,s1,i...) \ |
s | 63 | include/asm-i386/io.h | __IN1(s) __IN2(s,s1,"w") : "=a" (_v) : "d" (port) ,##i ); return _v; } \ |
s | 64 | include/asm-i386/io.h | __IN1(s##c) __IN2(s,s1,"") : "=a" (_v) : "i" (port) ,##i ); return _v; } \ |
s | 65 | include/asm-i386/io.h | __IN1(s##_p) __IN2(s,s1,"w") : "=a" (_v) : "d" (port) ,##i ); SLOW_DOWN_IO; return _v; } \ |
s | 66 | include/asm-i386/io.h | __IN1(s##c_p) __IN2(s,s1,"") : "=a" (_v) : "i" (port) ,##i ); SLOW_DOWN_IO; return _v; } |
s | 68 | include/asm-i386/io.h | #define __INS(s) \ |
s | 69 | include/asm-i386/io.h | extern inline void ins##s(unsigned short port, void * addr, unsigned long count) \ |
s | 70 | include/asm-i386/io.h | { __asm__ __volatile__ ("cld ; rep ; ins" #s \ |
s | 73 | include/asm-i386/io.h | #define __OUTS(s) \ |
s | 74 | include/asm-i386/io.h | extern inline void outs##s(unsigned short port, const void * addr, unsigned long count) \ |
s | 75 | include/asm-i386/io.h | { __asm__ __volatile__ ("cld ; rep ; outs" #s \ |
s | 125 | include/asm-i386/string.h | extern inline char * strchr(const char * s, int c) |
s | 139 | include/asm-i386/string.h | :"=a" (__res):"S" (s),"0" (c):"si"); |
s | 143 | include/asm-i386/string.h | extern inline char * strrchr(const char * s, int c) |
s | 155 | include/asm-i386/string.h | :"=d" (__res):"0" (0),"S" (s),"a" (c):"ax","si"); |
s | 265 | include/asm-i386/string.h | extern inline size_t strlen(const char * s) |
s | 274 | include/asm-i386/string.h | :"=c" (__res):"D" (s),"a" (0),"0" (0xffffffff):"di"); |
s | 280 | include/asm-i386/string.h | extern inline char * strtok(char * s,const char * ct) |
s | 335 | include/asm-i386/string.h | :"0" (___strtok),"1" (s),"g" (ct) |
s | 462 | include/asm-i386/string.h | extern inline void * __memset_generic(void * s, char c,size_t count) |
s | 469 | include/asm-i386/string.h | :"a" (c),"D" (s),"c" (count) |
s | 471 | include/asm-i386/string.h | return s; |
s | 475 | include/asm-i386/string.h | #define __constant_c_memset(s,c,count) __memset_generic((s),(unsigned char)(c),(count)) |
s | 476 | include/asm-i386/string.h | #define __constant_count_memset(s,c,count) __memset_generic((s),(c),(count)) |
s | 482 | include/asm-i386/string.h | extern inline void * __constant_c_and_count_memset(void * s, unsigned long pattern, size_t count) |
s | 486 | include/asm-i386/string.h | return s; |
s | 488 | include/asm-i386/string.h | *(unsigned char *)s = pattern; |
s | 489 | include/asm-i386/string.h | return s; |
s | 491 | include/asm-i386/string.h | *(unsigned short *)s = pattern; |
s | 492 | include/asm-i386/string.h | return s; |
s | 494 | include/asm-i386/string.h | *(unsigned short *)s = pattern; |
s | 495 | include/asm-i386/string.h | *(2+(unsigned char *)s) = pattern; |
s | 496 | include/asm-i386/string.h | return s; |
s | 498 | include/asm-i386/string.h | *(unsigned long *)s = pattern; |
s | 499 | include/asm-i386/string.h | return s; |
s | 506 | include/asm-i386/string.h | : "a" (pattern),"c" (count/4),"D" ((long) s) \ |
s | 510 | include/asm-i386/string.h | case 0: COMMON(""); return s; |
s | 511 | include/asm-i386/string.h | case 1: COMMON("\n\tstosb"); return s; |
s | 512 | include/asm-i386/string.h | case 2: COMMON("\n\tstosw"); return s; |
s | 513 | include/asm-i386/string.h | case 3: COMMON("\n\tstosw\n\tstosb"); return s; |
s | 518 | include/asm-i386/string.h | #define __constant_c_x_memset(s, c, count) \ |
s | 520 | include/asm-i386/string.h | __constant_c_and_count_memset((s),(c),(count)) : \ |
s | 521 | include/asm-i386/string.h | __constant_c_memset((s),(c),(count))) |
s | 523 | include/asm-i386/string.h | #define __memset(s, c, count) \ |
s | 525 | include/asm-i386/string.h | __constant_count_memset((s),(c),(count)) : \ |
s | 526 | include/asm-i386/string.h | __memset_generic((s),(c),(count))) |
s | 528 | include/asm-i386/string.h | #define memset(s, c, count) \ |
s | 530 | include/asm-i386/string.h | __constant_c_x_memset((s),(0x01010101UL*(unsigned char)c),(count)) : \ |
s | 531 | include/asm-i386/string.h | __memset((s),(c),(count))) |
s | 92 | include/asm-m68k/string.h | extern inline void * memset(void * s,char c,size_t count) |
s | 94 | include/asm-m68k/string.h | void *xs = s; |
s | 102 | include/asm-m68k/string.h | : "=a" (s), "=d" (count) |
s | 103 | include/asm-m68k/string.h | : "0" (s), "d" (c), "1" (count) |
s | 53 | include/asm-mips/io.h | #define __OUT1(s) \ |
s | 54 | include/asm-mips/io.h | extern inline void __out##s(unsigned int value, unsigned int port) { |
s | 59 | include/asm-mips/io.h | #define __OUT(m,s) \ |
s | 60 | include/asm-mips/io.h | __OUT1(s) __OUT2(m) : : "r" (value), "i" (0), "r" (PORT_BASE+port)); } \ |
s | 61 | include/asm-mips/io.h | __OUT1(s##c) __OUT2(m) : : "r" (value), "i" (port), "r" (PORT_BASE)); } \ |
s | 62 | include/asm-mips/io.h | __OUT1(s##_p) __OUT2(m) : : "r" (value), "i" (0), "r" (PORT_BASE+port)); \ |
s | 64 | include/asm-mips/io.h | __OUT1(s##c_p) __OUT2(m) : : "r" (value), "i" (port), "r" (PORT_BASE)); \ |
s | 67 | include/asm-mips/io.h | #define __IN1(s) \ |
s | 68 | include/asm-mips/io.h | extern inline unsigned int __in##s(unsigned int port) { unsigned int _v; |
s | 73 | include/asm-mips/io.h | #define __IN(m,s) \ |
s | 74 | include/asm-mips/io.h | __IN1(s) __IN2(m) STR(FILL_LDS) : "=r" (_v) : "i" (0), "r" (PORT_BASE+port)); return _v; } \ |
s | 75 | include/asm-mips/io.h | __IN1(s##c) __IN2(m) STR(FILL_LDS) : "=r" (_v) : "i" (port), "r" (PORT_BASE)); return _v; } \ |
s | 76 | include/asm-mips/io.h | __IN1(s##_p) __IN2(m) : "=r" (_v) : "i" (0), "r" (PORT_BASE+port)); SLOW_DOWN_IO; return _v; } \ |
s | 77 | include/asm-mips/io.h | __IN1(s##c_p) __IN2(m) : "=r" (_v) : "i" (port), "r" (PORT_BASE)); SLOW_DOWN_IO; return _v; } |
s | 79 | include/asm-mips/io.h | #define __INS1(s) \ |
s | 80 | include/asm-mips/io.h | extern inline void __ins##s(unsigned int port, void * addr, unsigned long count) { |
s | 94 | include/asm-mips/io.h | #define __INS(m,s,i) \ |
s | 95 | include/asm-mips/io.h | __INS1(s) __INS2(m) \ |
s | 99 | include/asm-mips/io.h | __INS1(s##c) __INS2(m) \ |
s | 104 | include/asm-mips/io.h | #define __OUTS1(s) \ |
s | 105 | include/asm-mips/io.h | extern inline void __outs##s(unsigned int port, const void * addr, unsigned long count) { |
s | 119 | include/asm-mips/io.h | #define __OUTS(m,s,i) \ |
s | 120 | include/asm-mips/io.h | __OUTS1(s) __OUTS2(m) \ |
s | 124 | include/asm-mips/io.h | __OUTS1(s##c) __OUTS2(m) \ |
s | 117 | include/asm-mips/string.h | extern __inline__ void * memset(void * s, int c, size_t count) |
s | 119 | include/asm-mips/string.h | void *xs = s; |
s | 129 | include/asm-mips/string.h | : "=r" (s), "=r" (count) |
s | 130 | include/asm-mips/string.h | : "0" (s), "r" (c), "1" (s + count - 1) |
s | 215 | include/asm-sparc/string.h | extern __inline__ size_t strspn(const char *s, const char *accept) |
s | 233 | include/asm-sparc/string.h | "=r" (s) : |
s | 235 | include/asm-sparc/string.h | "r" (scratch), "r" (trick=0), "0" (s)); |
s | 241 | include/asm-sparc/string.h | extern __inline__ char *strtok(char *s, const char *ct) |
s | 246 | include/asm-sparc/string.h | if (s == (char *) 0) |
s | 253 | include/asm-sparc/string.h | s = old; |
s | 256 | include/asm-sparc/string.h | s += strspn(s, ct); |
s | 257 | include/asm-sparc/string.h | if(*s == '\0') |
s | 263 | include/asm-sparc/string.h | tok = s; |
s | 264 | include/asm-sparc/string.h | s = strpbrk(tok, ct); |
s | 265 | include/asm-sparc/string.h | if (s == (char *) 0) |
s | 269 | include/asm-sparc/string.h | *s = '\0'; |
s | 270 | include/asm-sparc/string.h | old = s + 1; |
s | 95 | include/linux/ext2_fs.h | # define EXT2_BLOCK_SIZE(s) ((s)->s_blocksize) |
s | 97 | include/linux/ext2_fs.h | # define EXT2_BLOCK_SIZE(s) (EXT2_MIN_BLOCK_SIZE << (s)->s_log_block_size) |
s | 99 | include/linux/ext2_fs.h | #define EXT2_ACLE_PER_BLOCK(s) (EXT2_BLOCK_SIZE(s) / sizeof (struct ext2_acl_entry)) |
s | 100 | include/linux/ext2_fs.h | #define EXT2_ADDR_PER_BLOCK(s) (EXT2_BLOCK_SIZE(s) / sizeof (unsigned long)) |
s | 102 | include/linux/ext2_fs.h | # define EXT2_BLOCK_SIZE_BITS(s) ((s)->u.ext2_sb.s_es->s_log_block_size + 10) |
s | 104 | include/linux/ext2_fs.h | # define EXT2_BLOCK_SIZE_BITS(s) ((s)->s_log_block_size + 10) |
s | 106 | include/linux/ext2_fs.h | #define EXT2_INODES_PER_BLOCK(s) (EXT2_BLOCK_SIZE(s) / sizeof (struct ext2_inode)) |
s | 115 | include/linux/ext2_fs.h | # define EXT2_FRAG_SIZE(s) ((s)->u.ext2_sb.s_frag_size) |
s | 116 | include/linux/ext2_fs.h | # define EXT2_FRAGS_PER_BLOCK(s) ((s)->u.ext2_sb.s_frags_per_block) |
s | 118 | include/linux/ext2_fs.h | # define EXT2_FRAG_SIZE(s) (EXT2_MIN_FRAG_SIZE << (s)->s_log_frag_size) |
s | 119 | include/linux/ext2_fs.h | # define EXT2_FRAGS_PER_BLOCK(s) (EXT2_BLOCK_SIZE(s) / EXT2_FRAG_SIZE(s)) |
s | 172 | include/linux/ext2_fs.h | # define EXT2_BLOCKS_PER_GROUP(s) ((s)->u.ext2_sb.s_blocks_per_group) |
s | 173 | include/linux/ext2_fs.h | # define EXT2_DESC_PER_BLOCK(s) ((s)->u.ext2_sb.s_desc_per_block) |
s | 174 | include/linux/ext2_fs.h | # define EXT2_INODES_PER_GROUP(s) ((s)->u.ext2_sb.s_inodes_per_group) |
s | 176 | include/linux/ext2_fs.h | # define EXT2_BLOCKS_PER_GROUP(s) ((s)->s_blocks_per_group) |
s | 177 | include/linux/ext2_fs.h | # define EXT2_DESC_PER_BLOCK(s) (EXT2_BLOCK_SIZE(s) / sizeof (struct ext2_group_desc)) |
s | 178 | include/linux/ext2_fs.h | # define EXT2_INODES_PER_GROUP(s) ((s)->s_inodes_per_group) |
s | 42 | include/linux/msdos_fs.h | #define MSDOS_SB(s) (&((s)->u.msdos_sb)) |
s | 115 | include/linux/msdos_fs.h | extern void fs_panic(struct super_block *s,char *msg); |
s | 161 | include/linux/msdos_fs.h | extern struct super_block *msdos_read_super(struct super_block *s, |
s | 95 | include/linux/sonycd535.h | #define SONY_BLOCK_NUMBER(m,s,f) (((m)*60L+(s))*75L+(f)) |
s | 610 | include/linux/tpqic02.h | # define TPQDEB(s) s |
s | 611 | include/linux/tpqic02.h | # define TPQPUTS(s) tpqputs(s) |
s | 613 | include/linux/tpqic02.h | # define TPQDEB(s) |
s | 614 | include/linux/tpqic02.h | # define TPQPUTS(s) |
s | 90 | lib/string.c | char * strchr(const char * s,char c) |
s | 92 | lib/string.c | for(; *s != c; ++s) |
s | 93 | lib/string.c | if (*s == '\0') |
s | 95 | lib/string.c | return (char *) s; |
s | 98 | lib/string.c | size_t strlen(const char * s) |
s | 102 | lib/string.c | for (sc = s; *sc != '\0'; ++sc) |
s | 104 | lib/string.c | return sc - s; |
s | 107 | lib/string.c | size_t strspn(const char *s, const char *accept) |
s | 113 | lib/string.c | for (p = s; *p != '\0'; ++p) { |
s | 139 | lib/string.c | char * strtok(char * s,const char * ct) |
s | 143 | lib/string.c | sbegin = s ? s : ___strtok; |
s | 159 | lib/string.c | void * memset(void * s,char c,size_t count) |
s | 161 | lib/string.c | char *xs = (char *) s; |
s | 166 | lib/string.c | return s; |
s | 181 | lib/string.c | char *tmp = (char *) dest, *s = (char *) src; |
s | 184 | lib/string.c | *tmp++ = *s++; |
s | 191 | lib/string.c | char *tmp, *s; |
s | 195 | lib/string.c | s = (char *) src; |
s | 197 | lib/string.c | *tmp++ = *s++; |
s | 201 | lib/string.c | s = (char *) src + count; |
s | 203 | lib/string.c | *--tmp = *--s; |
s | 45 | lib/vsprintf.c | static int skip_atoi(const char **s) |
s | 49 | lib/vsprintf.c | while (is_digit(**s)) |
s | 50 | lib/vsprintf.c | i = i*10 + *((*s)++) - '0'; |
s | 140 | lib/vsprintf.c | char *s; |
s | 217 | lib/vsprintf.c | s = va_arg(args, char *); |
s | 218 | lib/vsprintf.c | if (!s) |
s | 219 | lib/vsprintf.c | s = "<NULL>"; |
s | 220 | lib/vsprintf.c | len = strlen(s); |
s | 230 | lib/vsprintf.c | *str++ = *s++; |
s | 1331 | net/inet/af_inet.c | struct sock *s; |
s | 1347 | net/inet/af_inet.c | for(s = prot->sock_array[hnum & (SOCK_ARRAY_SIZE - 1)]; |
s | 1348 | net/inet/af_inet.c | s != NULL; s = s->next) |
s | 1352 | net/inet/af_inet.c | if (s->num != hnum) |
s | 1355 | net/inet/af_inet.c | if(s->dead && (s->state == TCP_CLOSE)) |
s | 1358 | net/inet/af_inet.c | if (s->saddr) { |
s | 1359 | net/inet/af_inet.c | if (s->saddr != laddr) |
s | 1364 | net/inet/af_inet.c | if (s->daddr) { |
s | 1365 | net/inet/af_inet.c | if (s->daddr != raddr) |
s | 1370 | net/inet/af_inet.c | if (s->dummy_th.dest) { |
s | 1371 | net/inet/af_inet.c | if (s->dummy_th.dest != rnum) |
s | 1377 | net/inet/af_inet.c | return s; |
s | 1381 | net/inet/af_inet.c | result = s; |
s | 1396 | net/inet/af_inet.c | struct sock *s; |
s | 1398 | net/inet/af_inet.c | s=sk; |
s | 1400 | net/inet/af_inet.c | for(; s != NULL; s = s->next) |
s | 1402 | net/inet/af_inet.c | if (s->num != num) |
s | 1404 | net/inet/af_inet.c | if(s->dead && (s->state == TCP_CLOSE)) |
s | 1406 | net/inet/af_inet.c | if(s->daddr && s->daddr!=raddr) |
s | 1408 | net/inet/af_inet.c | if(s->saddr && s->saddr!=laddr) |
s | 1410 | net/inet/af_inet.c | return(s); |
s | 1425 | net/inet/af_inet.c | struct sock *s; |
s | 1439 | net/inet/af_inet.c | s=sk; |
s | 1441 | net/inet/af_inet.c | for(; s != NULL; s = s->next) |
s | 1443 | net/inet/af_inet.c | if (s->num != hnum) |
s | 1445 | net/inet/af_inet.c | if(s->dead && (s->state == TCP_CLOSE)) |
s | 1447 | net/inet/af_inet.c | if(s->daddr && s->daddr!=raddr) |
s | 1449 | net/inet/af_inet.c | if (s->dummy_th.dest != rnum && s->dummy_th.dest != 0) |
s | 1451 | net/inet/af_inet.c | if(s->saddr && s->saddr!=laddr) |
s | 1453 | net/inet/af_inet.c | return(s); |
s | 128 | net/inet/ipx.c | ipx_socket *s; |
s | 142 | net/inet/ipx.c | s=intrfc->if_sklist; |
s | 143 | net/inet/ipx.c | if(s==sk) { |
s | 144 | net/inet/ipx.c | intrfc->if_sklist=s->next; |
s | 149 | net/inet/ipx.c | while(s && s->next) { |
s | 150 | net/inet/ipx.c | if(s->next==sk) { |
s | 151 | net/inet/ipx.c | s->next=sk->next; |
s | 155 | net/inet/ipx.c | s=s->next; |
s | 225 | net/inet/ipx.c | ipx_socket *s; |
s | 232 | net/inet/ipx.c | for (s = intrfc->if_sklist; s->next != NULL; s = s->next) |
s | 234 | net/inet/ipx.c | s->next = sk; |
s | 241 | net/inet/ipx.c | ipx_socket *s; |
s | 243 | net/inet/ipx.c | for (s=intrfc->if_sklist; |
s | 244 | net/inet/ipx.c | (s != NULL) && (s->ipx_port != port); |
s | 245 | net/inet/ipx.c | s=s->next) |
s | 248 | net/inet/ipx.c | return s; |
s | 257 | net/inet/ipx.c | ipx_socket *s, *t; |
s | 263 | net/inet/ipx.c | for (s = intrfc->if_sklist; s != NULL; ) { |
s | 264 | net/inet/ipx.c | s->err = ENOLINK; |
s | 265 | net/inet/ipx.c | s->error_report(s); |
s | 266 | net/inet/ipx.c | s->ipx_intrfc = NULL; |
s | 267 | net/inet/ipx.c | s->ipx_port = 0; |
s | 268 | net/inet/ipx.c | s->zapped=1; /* Indicates it is no longer bound */ |
s | 269 | net/inet/ipx.c | t = s; |
s | 270 | net/inet/ipx.c | s = s->next; |
s | 1151 | net/inet/ipx.c | ipx_socket *s; |
s | 1163 | net/inet/ipx.c | for (s = i->if_sklist; s != NULL; s = s->next) { |
s | 1166 | net/inet/ipx.c | htons(s->ipx_port)); |
s | 1167 | net/inet/ipx.c | if (s->state!=TCP_ESTABLISHED) { |
s | 1172 | net/inet/ipx.c | htonl(s->ipx_dest_addr.net), |
s | 1173 | net/inet/ipx.c | s->ipx_dest_addr.node[0], s->ipx_dest_addr.node[1], |
s | 1174 | net/inet/ipx.c | s->ipx_dest_addr.node[2], s->ipx_dest_addr.node[3], |
s | 1175 | net/inet/ipx.c | s->ipx_dest_addr.node[4], s->ipx_dest_addr.node[5], |
s | 1176 | net/inet/ipx.c | htons(s->ipx_dest_addr.sock)); |
s | 1179 | net/inet/ipx.c | s->wmem_alloc, s->rmem_alloc); |
s | 1181 | net/inet/ipx.c | s->state, SOCK_INODE(s->socket)->i_uid); |
s | 331 | net/inet/tcp.c | static struct sk_buff *tcp_find_established(struct sock *s) |
s | 333 | net/inet/tcp.c | struct sk_buff *p=skb_peek(&s->receive_queue); |
s | 342 | net/inet/tcp.c | while(p!=(struct sk_buff *)&s->receive_queue); |
s | 351 | net/inet/tcp.c | static struct sk_buff *tcp_dequeue_established(struct sock *s) |
s | 357 | net/inet/tcp.c | skb=tcp_find_established(s); |