/linux-2.4.37.9/drivers/usb/gadget/ |
D | gadget_chips.h | 12 #define gadget_is_net2280(g) !strcmp("net2280", (g)->name) argument 14 #define gadget_is_net2280(g) 0 argument 18 #define gadget_is_dummy(g) !strcmp("dummy_udc", (g)->name) argument 20 #define gadget_is_dummy(g) 0 argument 24 #define gadget_is_pxa(g) !strcmp("pxa2xx_udc", (g)->name) argument 26 #define gadget_is_pxa(g) 0 argument 30 #define gadget_is_goku(g) !strcmp("goku_udc", (g)->name) argument 32 #define gadget_is_goku(g) 0 argument 36 #define gadget_is_sh(g) !strcmp("sh_udc", (g)->name) argument 38 #define gadget_is_sh(g) 0 argument [all …]
|
/linux-2.4.37.9/drivers/block/ |
D | blkpg.c | 67 struct gendisk *g; in add_partition() local 82 g = get_gendisk(dev); in add_partition() 83 if (!g) in add_partition() 87 drive = (MINOR(dev) >> g->minor_shift); in add_partition() 88 first_minor = (drive << g->minor_shift); in add_partition() 89 end_minor = first_minor + g->max_p; in add_partition() 90 if (drive >= g->nr_real) in add_partition() 94 if (first_minor != MINOR(dev) || p->pno <= 0 || p->pno >= g->max_p) in add_partition() 99 if (g->part[minor].nr_sects != 0) in add_partition() 104 if (!(pstart+plength <= g->part[i].start_sect || in add_partition() [all …]
|
/linux-2.4.37.9/arch/ia64/sn/io/sn2/ |
D | geo_op.c | 73 geo_module(geoid_t g) in geo_module() argument 75 if (g.any.type == GEO_TYPE_INVALID) in geo_module() 78 return g.any.module; in geo_module() 102 geo_slab(geoid_t g) in geo_slab() argument 104 if (g.any.type == GEO_TYPE_INVALID) in geo_slab() 107 return g.any.slab; in geo_slab() 130 geo_type(geoid_t g) in geo_type() argument 132 return g.any.type; in geo_type() 155 geo_valid(geoid_t g) in geo_valid() argument 157 return g.any.type != GEO_TYPE_INVALID; in geo_valid() [all …]
|
/linux-2.4.37.9/drivers/net/fc/ |
D | iph5526.c | 264 dev->dev_addr[0] = (fi->g.my_port_name_high & 0x0000FF00) >> 8; in iph5526_probe_pci() 265 dev->dev_addr[1] = fi->g.my_port_name_high; in iph5526_probe_pci() 266 dev->dev_addr[2] = (fi->g.my_port_name_low & 0xFF000000) >> 24; in iph5526_probe_pci() 267 dev->dev_addr[3] = (fi->g.my_port_name_low & 0x00FF0000) >> 16; in iph5526_probe_pci() 268 dev->dev_addr[4] = (fi->g.my_port_name_low & 0x0000FF00) >> 8; in iph5526_probe_pci() 269 dev->dev_addr[5] = fi->g.my_port_name_low; in iph5526_probe_pci() 350 fi->g.mfs_buffer_count = 0; 369 fi->g.loop_up = FALSE; 370 fi->g.ptp_up = FALSE; 371 fi->g.link_up = FALSE; [all …]
|
D | tach.h | 356 #define WORLD_WIDE_NAME_LOW fi->g.my_port_name_low 357 #define WORLD_WIDE_NAME_HIGH fi->g.my_port_name_high 358 #define N_PORT_NAME_HIGH fi->g.my_port_name_high 359 #define N_PORT_NAME_LOW fi->g.my_port_name_low 360 #define NODE_NAME_HIGH fi->g.my_node_name_high 361 #define NODE_NAME_LOW fi->g.my_node_name_low
|
/linux-2.4.37.9/crypto/ |
D | sha256.c | 84 u32 a, b, c, d, e, f, g, h, t1, t2; in sha256_transform() local 98 e=state[4]; f=state[5]; g=state[6]; h=state[7]; in sha256_transform() 101 t1 = h + e1(e) + Ch(e,f,g) + 0x428a2f98 + W[ 0]; in sha256_transform() 103 t1 = g + e1(d) + Ch(d,e,f) + 0x71374491 + W[ 1]; in sha256_transform() 104 t2 = e0(h) + Maj(h,a,b); c+=t1; g=t1+t2; in sha256_transform() 106 t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2; in sha256_transform() 108 t2 = e0(f) + Maj(f,g,h); a+=t1; e=t1+t2; in sha256_transform() 110 t2 = e0(e) + Maj(e,f,g); h+=t1; d=t1+t2; in sha256_transform() 112 t2 = e0(d) + Maj(d,e,f); g+=t1; c=t1+t2; in sha256_transform() 113 t1 = b + e1(g) + Ch(g,h,a) + 0x923f82a4 + W[ 6]; in sha256_transform() [all …]
|
D | sha512.c | 133 u64 a, b, c, d, e, f, g, h, t1, t2; in sha512_transform() local 148 e=state[4]; f=state[5]; g=state[6]; h=state[7]; in sha512_transform() 152 t1 = h + e1(e) + Ch(e,f,g) + sha512_K[i ] + W[i ]; in sha512_transform() 154 t1 = g + e1(d) + Ch(d,e,f) + sha512_K[i+1] + W[i+1]; in sha512_transform() 155 t2 = e0(h) + Maj(h,a,b); c+=t1; g=t1+t2; in sha512_transform() 157 t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2; in sha512_transform() 159 t2 = e0(f) + Maj(f,g,h); a+=t1; e=t1+t2; in sha512_transform() 161 t2 = e0(e) + Maj(e,f,g); h+=t1; d=t1+t2; in sha512_transform() 163 t2 = e0(d) + Maj(d,e,f); g+=t1; c=t1+t2; in sha512_transform() 164 t1 = b + e1(g) + Ch(g,h,a) + sha512_K[i+6] + W[i+6]; in sha512_transform() [all …]
|
/linux-2.4.37.9/drivers/sound/emu10k1/ |
D | efxmgr.h | 218 #define GET_OUTPUT_GPR(patch, g, ln) \ argument 220 mgr->gpr[(g) - GPR_BASE].type = GPR_TYPE_IO; \ 221 mgr->gpr[(g) - GPR_BASE].usage++; \ 222 mgr->gpr[(g) - GPR_BASE].line = ln; \ 223 set_bit((g) - GPR_BASE, patch->gpr_used); \ 226 #define GET_INPUT_GPR(patch, g, ln) \ argument 228 mgr->gpr[(g) - GPR_BASE].type = GPR_TYPE_IO; \ 229 mgr->gpr[(g) - GPR_BASE].usage++; \ 230 mgr->gpr[(g) - GPR_BASE].line = ln; \ 231 set_bit((g) - GPR_BASE, patch->gpr_used); \ [all …]
|
/linux-2.4.37.9/scripts/ |
D | makelst | 20 t6=`echo $t4 - $t5 | sed -e s/a/A/g -e s/b/B/g -e s/c/C/g -e s/d/D/g -e s/e/E/g -e s/f/F/g`
|
/linux-2.4.37.9/fs/qnx4/ |
D | bitmap.c | 92 const char *g; in qnx4_is_free() local 103 g = bh->b_data + (block % QNX4_BLOCK_SIZE); in qnx4_is_free() 104 if (((*g) & (1 << (block % 8))) == 0) { in qnx4_is_free() 121 char *g; in qnx4_set_bitmap() local 131 g = bh->b_data + (block % QNX4_BLOCK_SIZE); in qnx4_set_bitmap() 133 (*g) &= ~(1 << (block % 8)); in qnx4_set_bitmap() 135 (*g) |= (1 << (block % 8)); in qnx4_set_bitmap()
|
/linux-2.4.37.9/include/asm-ia64/sn/ |
D | geo.h | 33 extern moduleid_t geo_module(geoid_t g); 34 extern slabid_t geo_slab(geoid_t g); 35 extern geo_type_t geo_type(geoid_t g); 36 extern int geo_valid(geoid_t g);
|
/linux-2.4.37.9/net/bridge/ |
D | br_fdb.c | 131 struct net_bridge_fdb_entry *g; in br_fdb_cleanup() local 133 g = f->next_hash; in br_fdb_cleanup() 139 f = g; in br_fdb_cleanup() 155 struct net_bridge_fdb_entry *g; in br_fdb_delete_by_port() local 157 g = f->next_hash; in br_fdb_delete_by_port() 162 f = g; in br_fdb_delete_by_port() 219 struct net_bridge_fdb_entry *g; in br_fdb_get_entries() local 240 g = f->next_hash; in br_fdb_get_entries() 247 if (g == NULL && pp == NULL) in br_fdb_get_entries() 253 f = g; in br_fdb_get_entries()
|
/linux-2.4.37.9/drivers/video/ |
D | fonts.c | 106 struct fbcon_font_desc *f, *g; in fbcon_get_default_font() local 108 g = NULL; in fbcon_get_default_font() 127 g = f; in fbcon_get_default_font() 130 return g; in fbcon_get_default_font()
|
D | epson1355fb.c | 350 u8 r, g, b; in e1355_getcolreg() local 354 g = e1355_read_reg(E1355_LUT_DATA); in e1355_getcolreg() 358 *green = g << 8; in e1355_getcolreg() 369 u8 g = (green>>8) & 0xf0; in e1355_setcolreg() local 374 e1355_write_reg(g, E1355_LUT_DATA); in e1355_setcolreg()
|
/linux-2.4.37.9/net/ipv4/ipvs/ |
D | ip_vs_wrr.c | 58 int g = 1; in ip_vs_wrr_gcd_weight() local 65 g = weight; in ip_vs_wrr_gcd_weight() 70 return g; in ip_vs_wrr_gcd_weight() 76 g = gcd(weight, g); in ip_vs_wrr_gcd_weight() 79 return g; in ip_vs_wrr_gcd_weight()
|
/linux-2.4.37.9/drivers/video/matrox/ |
D | matroxfb_maven.c | 485 const struct maven_gamma* g; in maven_init_TVdata() local 486 g = maven_compute_gamma(md); in maven_init_TVdata() 487 data->regs[0x83] = g->reg83; in maven_init_TVdata() 488 data->regs[0x84] = g->reg84; in maven_init_TVdata() 489 data->regs[0x85] = g->reg85; in maven_init_TVdata() 490 data->regs[0x86] = g->reg86; in maven_init_TVdata() 491 data->regs[0x87] = g->reg87; in maven_init_TVdata() 492 data->regs[0x88] = g->reg88; in maven_init_TVdata() 493 data->regs[0x89] = g->reg89; in maven_init_TVdata() 494 data->regs[0x8A] = g->reg8a; in maven_init_TVdata() [all …]
|
/linux-2.4.37.9/arch/m68k/fpsp040/ |
D | round.S | 34 | d0{31:29} contains the g,r,s bits (extended) 37 | a0 is preserved and the g-r-s bits in d0 are cleared. 42 | inexact (i.e. if any of the g-r-s bits were set). 47 | If g=r=s=0 then result is exact and round is done, else set 52 | ;the appropriate g-r-s bits. 85 movel #0xffffffff,%d0 |force g,r,s to be all f's 113 | If (g=1), then add 1 to l and if (r=s=0), then clear l 118 asll #1,%d0 |shift g-bit to c-bit 119 bcc truncate |if (g=1) then 149 bfextu LOCAL_HI(%a0){#24:#2},%d3 |sgl prec. g-r are 2 bits right [all …]
|
/linux-2.4.37.9/lib/zlib_inflate/ |
D | inftrees.c | 111 int g; /* maximum code length */ local 158 g = i; /* maximum code length */ 187 n = x[g]; /* set n to length of v */ 200 for (; k <= g; k++) 213 z = g - w; 287 return y != 0 && g != 1 ? Z_BUF_ERROR : Z_OK;
|
/linux-2.4.37.9/Documentation/ |
D | initrd.txt | 37 7) the usual boot sequence (e.g. invocation of /sbin/init) is performed 52 initrd=<path> (e.g. LOADLIN) 81 "normal" root file system, e.g. 101 needed to execute programs from initrd (e.g. executable format and file 116 2) create an empty file system of the appropriate size, e.g. 124 3) mount the file system, e.g. 137 general system state (e.g. by reconfiguring network interfaces, 169 e.g. LOADLIN C:\LINUX\BZIMAGE initrd=C:\LINUX\INITRD.GZ root=/dev/ram0 174 the options using APPEND, e.g. 223 Where what-follows is a program under the new root, e.g. /sbin/init [all …]
|
/linux-2.4.37.9/Documentation/s390/ |
D | Debugging390.txt | 81 e.g. switching address translation off requires that you 90 PER is used to facilititate debugging e.g. single stepping. 386 up on function exit ( e.g. the caller may choose to allocate nothing 460 e.g. 504 by the callee are saved, e.g. the compiler is perfectly 507 2) In functions with variable arguments e.g. printf the calling procedure 651 some of the instructions have g's on the end of them to indicate 689 shared libraries, normal -g debugging works much better now 692 This is typically done adding/appending the flags -g or -gdwarf-2 to the 725 that are being included ( e.g. double check that you aren't going to the i386 asm directory ). [all …]
|
/linux-2.4.37.9/Documentation/video4linux/ |
D | CQcam.txt | 228 #define READ_VIDEO_PIXEL(buf, format, depth, r, g, b) \ 238 (r) = (g) = (b) = (*buf++ << 8);\ 242 (r) = (g) = (b) = \ 254 (g) = (tmp<<5)&0xFC00; \ 262 (g) = ((buf[0] << 5 | buf[1] >> 3)&0xF8)<<8; \ 268 (r) = buf[0] << 8; (g) = buf[1] << 8; \ 296 int bpp = 24, r, g, b; 381 READ_VIDEO_PIXEL(src, vpic.palette, src_depth, r, g, b); 383 fputc(g>>8, stdout);
|
/linux-2.4.37.9/drivers/ide/legacy/ |
D | hd.c | 639 struct hd_geometry g; in hd_ioctl() local 641 g.heads = hd_info[dev].head; in hd_ioctl() 642 g.sectors = hd_info[dev].sect; in hd_ioctl() 643 g.cylinders = hd_info[dev].cyl; in hd_ioctl() 644 g.start = hd[MINOR(inode->i_rdev)].start_sect; in hd_ioctl() 645 return copy_to_user(loc, &g, sizeof g) ? -EFAULT : 0; in hd_ioctl()
|
/linux-2.4.37.9/Documentation/isdn/ |
D | syncPPP.FAQ | 22 here, the framing is character based. (e.g when 50 (you can check this e.g with the program 'ifconfig') 85 e.g: 142 trigger a network packet. (e.g gethostbyname()). 175 on the option line with the <a.b.c.d:e.f.g.h> option. 184 A: Maybe you try these options .. e.g: 220 this increases redundancy. (e.g your remote side is buggy and
|
/linux-2.4.37.9/lib/ |
D | inflate.c | 291 int g; /* maximum code length */ local 339 g = i; /* maximum code length */ 371 n = x[g]; /* set n to length of v */ 386 for (; k <= g; k++) 402 z = (z = g - w) > (unsigned)l ? l : z; /* upper limit on table size */ 489 return y != 0 && g != 1;
|
/linux-2.4.37.9/Documentation/crypto/ |
D | api-intro.txt | 7 arguments, and works directly on pages. In some cases (e.g. ECB 22 of the implementation logic (e.g. manipulating page vectors), provide an 24 operations (e.g. cipher modes, HMAC for digests). However, at the user 30 [transform ops] (per-type logic glue e.g. cipher.c, digest.c) 109 Algorithms submitted must also be generally patent-free (e.g. IDEA
|