Searched refs:id (Results 126 - 150 of 3489) sorted by relevance

1234567891011>>

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/parisc/
H A Dccio-rm-dma.c58 #define IS_U2(id) ( \
59 (((id)->hw_type == HPHW_IOA) && ((id)->hversion == U2_IOA_RUNWAY)) || \
60 (((id)->hw_type == HPHW_BCPORT) && ((id)->hversion == U2_BC_GSC)) \
63 #define IS_UTURN(id) ( \
64 (((id)->hw_type == HPHW_IOA) && ((id)->hversion == UTURN_IOA_RUNWAY)) || \
65 (((id)->hw_type == HPHW_BCPORT) && ((id)
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/s390/cio/
H A Didset.c52 static inline void idset_add(struct idset *set, int ssid, int id) argument
54 set_bit(ssid * set->num_id + id, set->bitmap);
57 static inline void idset_del(struct idset *set, int ssid, int id) argument
59 clear_bit(ssid * set->num_id + id, set->bitmap);
62 static inline int idset_contains(struct idset *set, int ssid, int id) argument
64 return test_bit(ssid * set->num_id + id, set->bitmap);
67 static inline int idset_get_first(struct idset *set, int *ssid, int *id) argument
75 *id = bitnum % set->num_id;
102 int id = 0; local
105 rc = idset_get_first(set, &ssid, &id);
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/bind/serial/test/
H A DNullClassCatalog.java26 private long id = Long.MAX_VALUE; field in class:NullClassCatalog
35 return BigInteger.valueOf(id--).toByteArray();
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna/
H A Doptions.c20 enum upnpconfigoptions id; member in struct:__anon1115
52 enum upnpconfigoptions id; local
113 id = UPNP_INVALID;
116 /*printf("%2d %2d %s %s\n", i, optionids[i].id, name,
121 id = optionids[i].id;
126 if(id == UPNP_INVALID)
136 ary_options[num_options-1].id = id;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna.03.14/
H A Doptions.c41 enum upnpconfigoptions id; member in struct:__anon1128
78 enum upnpconfigoptions id; local
139 id = UPNP_INVALID;
142 /*printf("%2d %2d %s %s\n", i, optionids[i].id, name,
147 id = optionids[i].id;
152 if(id == UPNP_INVALID)
162 ary_options[num_options-1].id = id;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna.07.26/
H A Doptions.c20 enum upnpconfigoptions id; member in struct:__anon1141
52 enum upnpconfigoptions id; local
113 id = UPNP_INVALID;
116 /*printf("%2d %2d %s %s\n", i, optionids[i].id, name,
121 id = optionids[i].id;
126 if(id == UPNP_INVALID)
136 ary_options[num_options-1].id = id;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp-2.4.4/pppd/plugins/radius/
H A Dclientid.c17 UINT4 id; member in struct:map2id_s
27 * Purpose: Read in the ttyname to port id map file
38 char *c, *name, *id, *q; local
67 id = c;
75 p->id = atoi(id);
97 * Purpose: Map ttyname to port id
101 * Returns: port id, zero if no entry found
116 if (!strcmp(ttyname, p->name)) return p->id;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/pnp/pnpacpi/
H A Dcore.c56 static int __init ispnpidacpi(char *id) argument
58 TEST_ALPHA(id[0]);
59 TEST_ALPHA(id[1]);
60 TEST_ALPHA(id[2]);
61 TEST_HEX(id[3]);
62 TEST_HEX(id[4]);
63 TEST_HEX(id[5]);
64 TEST_HEX(id[6]);
65 if (id[7] != '\0')
70 static void __init pnpidacpi_to_pnpid(char *id, cha argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/udev/extras/volume_id/lib/
H A Dddf_raid.c43 int volume_id_probe_ddf_raid(struct volume_id *id, uint64_t off, uint64_t size) argument
53 buf = volume_id_get_buffer(id, off + ddf_off, 0x200);
61 volume_id_set_uuid(id, ddf->guid, DDF_GUID_LENGTH, UUID_STRING);
62 snprintf(id->type_version, DDF_REV_LENGTH, "%s", ddf->ddf_rev);
63 volume_id_set_usage(id, VOLUME_ID_RAID);
64 id->type = "ddf_raid_member";
H A Dsilicon_raid.c50 int volume_id_probe_silicon_medley_raid(struct volume_id *id, uint64_t off, uint64_t size) argument
63 buf = volume_id_get_buffer(id, off + meta_off, 0x200);
71 volume_id_set_usage(id, VOLUME_ID_RAID);
72 snprintf(id->type_version, sizeof(id->type_version)-1, "%u.%u",
74 id->type = "silicon_medley_raid_member";
H A Dvia_raid.c60 int volume_id_probe_via_raid(struct volume_id *id, uint64_t off, uint64_t size) argument
74 buf = volume_id_get_buffer(id, off + meta_off, 0x200);
88 volume_id_set_usage(id, VOLUME_ID_RAID);
89 snprintf(id->type_version, sizeof(id->type_version)-1, "%u", via->version_number);
90 id->type = "via_raid_member";
H A Dsysv.c92 int volume_id_probe_sysv(struct volume_id *id, uint64_t off, uint64_t size) argument
102 volume_id_get_buffer(id, off + (boff * SYSV_SUPERBLOCK_BLOCK), 0x200);
107 volume_id_set_label_raw(id, vs->s_fname, 6);
108 volume_id_set_label_string(id, vs->s_fname, 6);
109 id->type = "sysv";
116 volume_id_get_buffer(id, off + (boff + XENIX_SUPERBLOCK_BLOCK), 0x200);
121 volume_id_set_label_raw(id, xs->s_fname, 6);
122 volume_id_set_label_string(id, xs->s_fname, 6);
123 id->type = "xenix";
131 volume_id_set_usage(id, VOLUME_ID_FILESYSTE
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/net/sched/
H A Dcls_route.c42 u32 id; member in struct:route4_fastmap
61 u32 id; member in struct:route4_filter
77 static __inline__ int route4_fastmap_hash(u32 id, int iif) argument
79 return id&0xF;
83 void route4_reset_fastmap(struct net_device *dev, struct route4_head *head, u32 id) argument
91 route4_set_fastmap(struct route4_head *head, u32 id, int iif, argument
94 int h = route4_fastmap_hash(id, iif);
95 head->fastmap[h].id = id;
100 static __inline__ int route4_hash_to(u32 id) argument
105 route4_hash_from(u32 id) argument
142 u32 id, h; local
202 to_hash(u32 id) argument
210 from_hash(u32 id) argument
338 u32 id = 0, to = 0, nhandle = 0x8000; local
561 u32 id; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/ppc/syslib/
H A Dmpc52xx_devices.c38 .id = 0,
55 .id = 1,
72 .id = -1,
96 .id = -1,
115 .id = -1,
132 .id = 0,
149 .id = 1,
166 .id = 2,
183 .id = 3,
200 .id
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/isdn/hardware/eicon/
H A Ddebug.c17 static void DI_format (int do_lock, word id, int type, char *format, va_list argument_list);
18 static void DI_format_locked (word id, int type, char *format, va_list argument_list);
19 static void DI_format_old (word id, char *format, va_list ap) { } argument
20 static void DiProcessEventLog (unsigned short id, unsigned long msgID, va_list ap) { } argument
378 int id, free_id = -1, best_id = 0; local
387 ((hDbg->id == 0) && (((_OldDbgHandle_ *)hDbg)->id == -1)) ||
394 for (id = 1; id < ARRAY_SIZE(clients); id
565 DI_format_locked(unsigned short id, int type, char *format, va_list argument_list) argument
572 DI_format(int do_lock, unsigned short id, int type, char *format, va_list ap) argument
733 diva_get_driver_info(dword id, byte* data, int data_length) argument
785 diva_get_driver_dbg_mask(dword id, byte* data) argument
807 diva_set_driver_dbg_mask(dword id, dword mask) argument
864 int id, best_id = 0, free_id = -1; local
1509 int id = TraceFilterIdent; local
1556 int id = TraceFilterIdent; local
1801 int id = TraceFilterIdent; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/input/gameport/
H A Dns558.c172 { .id = "@P@0001", .driver_data = 0 }, /* ALS 100 */
173 { .id = "@P@0020", .driver_data = 0 }, /* ALS 200 */
174 { .id = "@P@1001", .driver_data = 0 }, /* ALS 100+ */
175 { .id = "@P@2001", .driver_data = 0 }, /* ALS 120 */
176 { .id = "ASB16fd", .driver_data = 0 }, /* AdLib NSC16 */
177 { .id = "AZT3001", .driver_data = 0 }, /* AZT1008 */
178 { .id = "CDC0001", .driver_data = 0 }, /* Opl3-SAx */
179 { .id = "CSC0001", .driver_data = 0 }, /* CS4232 */
180 { .id = "CSC000f", .driver_data = 0 }, /* CS4236 */
181 { .id
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/char/drm/
H A Ddrm_drawable.c135 int id, idx; local
146 id = draw.handle - 1;
147 idx = id / (8 * sizeof(*bitfield));
148 shift = id % (8 * sizeof(*bitfield));
162 if (info[id]) {
163 drm_free(info[id]->rects, info[id]->num_rects *
165 drm_free(info[id], sizeof(**info), DRM_MEM_BUFS);
234 unsigned int id, idx, shift; local
244 id
325 drm_get_drawable_info(drm_device_t *dev, drm_drawable_t id) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/iptables-1.x/extensions/
H A Dlibipt_realm.c34 int id; member in struct:realmname
52 int id; local
70 id = strtoul(cur, &nxt, strncmp(cur, "0x", 2) ? 10 : 16);
75 if (id < 0 || id > 255)
97 newnm->id = id;
118 /* get realm id for name, -1 if error/not found */
130 return cur->id;
136 /* get realm name for id, NUL
137 realm_id2name(int id) argument
164 int id; local
200 print_realm(unsigned long id, unsigned long mask, int numeric) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/prebuilt/WW/www/
H A Ddtree.js13 function Node(id, pid, name, io, shc, icon, iconOpen, open) {
14 this.id = id;
54 dTree.prototype.add = function(id, pid, name, io, shc, icon, iconOpen, open) {
55 this.aNodes[this.aNodes.length] = new Node(id, pid, name, io, shc, icon, iconOpen, open);
74 if (this.aNodes[n].pid == pNode.id) {
80 if ( cn.id == this.selectedNode ) {
96 if (!node.icon) node.icon = (this.root.id == node.pid) ? this.icon.root : this.icon.folder;
98 if (this.root.id == node.pid) {
102 str += '<img id
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Dframe.c54 int id3_frame_validid(char const *id) argument
56 return id &&
57 valid_idchar(id[0]) &&
58 valid_idchar(id[1]) &&
59 valid_idchar(id[2]) &&
60 valid_idchar(id[3]);
67 struct id3_frame *id3_frame_new(char const *id) argument
73 if (!id3_frame_validid(id))
76 frametype = id3_frametype_lookup(id, 4);
78 switch (id[
179 obsolete(char const *id, id3_byte_t const *data, id3_length_t length) argument
203 unparseable(char const *id, id3_byte_t const **ptr, id3_length_t length, int flags, int group_id, int encryption_method, id3_length_t decoded_length) argument
267 id3_byte_t const *id, *end, *data; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/um/kernel/skas/
H A Dmmu.c104 to_mm->id.stack = stack;
115 to_mm->id.u.mm_fd = ret;
119 to_mm->id.u.pid = copy_context_skas0(stack,
120 from_mm->id.u.pid);
121 else to_mm->id.u.pid = start_userspace(stack);
134 if(to_mm->id.stack != 0)
135 free_page(to_mm->id.stack);
145 os_close_file(mmu->id.u.mm_fd);
147 os_kill_ptraced_process(mmu->id.u.pid, 1);
150 free_page(mmu->id
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/scsi/
H A Damiga7xx.c53 zorro_id id; member in struct:__anon6410
57 { .id = ZORRO_PROD_PHASE5_BLIZZARD_603E_PLUS, .offset = 0xf40000,
59 { .id = ZORRO_PROD_MACROSYSTEMS_WARP_ENGINE_40xx, .offset = 0x40000 },
60 { .id = ZORRO_PROD_CBM_A4091_1, .offset = 0x800000 },
61 { .id = ZORRO_PROD_CBM_A4091_2, .offset = 0x800000 },
62 { .id = ZORRO_PROD_GVP_GFORCE_040_060, .offset = 0x40000 },
73 for (i = 0; amiga7xx_table[i].id; i++)
74 if (z->id == amiga7xx_table[i].id)
76 if (!amiga7xx_table[i].id)
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/packages/libid3tag-0.15.0b/
H A Dframe.c54 int id3_frame_validid(char const *id) argument
56 return id &&
57 valid_idchar(id[0]) &&
58 valid_idchar(id[1]) &&
59 valid_idchar(id[2]) &&
60 valid_idchar(id[3]);
67 struct id3_frame *id3_frame_new(char const *id) argument
73 if (!id3_frame_validid(id))
76 frametype = id3_frametype_lookup(id, 4);
78 switch (id[
179 obsolete(char const *id, id3_byte_t const *data, id3_length_t length) argument
203 unparseable(char const *id, id3_byte_t const **ptr, id3_length_t length, int flags, int group_id, int encryption_method, id3_length_t decoded_length) argument
267 id3_byte_t const *id, *end, *data; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/media/video/pvrusb2/
H A Dpvrusb2-std.c29 v4l2_std_id id; member in struct:std_name
131 v4l2_std_id id = 0; local
151 cmsk = sp->id;
167 t = sp->id & cmsk;
169 id |= t;
175 if (idPtr) *idPtr = id;
181 v4l2_std_id id)
194 if (!(gp->id & ip->id & id)) continu
180 pvr2_std_id_to_str(char *bufPtr, unsigned int bufSize, v4l2_std_id id) argument
277 match_std(v4l2_std_id id) argument
288 pvr2_std_fill(struct v4l2_standard *std,v4l2_std_id id) argument
315 pvr2_std_create_enum(unsigned int *countptr, v4l2_std_id id) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/input/joystick/
H A Dgf2k.c88 unsigned char id; member in struct:gf2k
182 for (i = 0; i < 4 && i < gf2k_axes[gf2k->id]; i++)
185 for (i = 0; i < 2 && i < gf2k_axes[gf2k->id] - 4; i++)
190 for (i = 0; i < gf2k_hats[gf2k->id]; i++)
195 for (i = 0; i < gf2k_joys[gf2k->id]; i++)
198 for (i = 0; i < gf2k_pads[gf2k->id]; i++)
215 if (gf2k_read_packet(gf2k->gameport, gf2k_length[gf2k->id], data) < gf2k_length[gf2k->id])
237 * gf2k_connect() probes for Genius id joysticks.
276 if (!(gf2k->id
[all...]

Completed in 207 milliseconds

1234567891011>>