Searched refs:octets (Results 1 - 25 of 34) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/src/include/proto/
H A D802.11e.h42 uint8 octets[3]; member in struct:tsinfo
91 #define WLC_CAC_GET_TID(pt) ((((pt).octets[0]) & TS_INFO_TID_MASK) >> TS_INFO_TID_SHIFT)
92 #define WLC_CAC_GET_DIR(pt) ((((pt).octets[0]) & \
94 #define WLC_CAC_GET_PSB(pt) ((((pt).octets[1]) & TS_INFO_PSB_MASK) >> TS_INFO_PSB_SHIFT)
95 #define WLC_CAC_GET_USER_PRIO(pt) ((((pt).octets[1]) & \
98 #define WLC_CAC_SET_TID(pt, id) ((((pt).octets[0]) & (~TS_INFO_TID_MASK)) | \
100 #define WLC_CAC_SET_USER_PRIO(pt, prio) ((((pt).octets[0]) & (~TS_INFO_USER_PRIO_MASK)) | \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dinet_pton.c96 int saw_digit, octets, ch; local
100 octets = 0;
115 if(++octets > 4)
121 if(octets == 4)
129 if(octets < 4)
H A Dmk-ca-bundle.pl218 my @octets = split(/\\/);
219 shift @octets;
220 for (@octets) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/b43legacy/
H A Dpio.c79 unsigned int octets)
92 while (i < octets - 1) {
97 if (octets % 2)
98 tx_octet(queue, packet[octets -
192 unsigned int octets; local
206 octets = skb->len + txhdr_size;
208 octets--;
209 tx_data(queue, txhdr, (u8 *)skb->data, octets);
234 u16 octets; local
237 octets
76 tx_data(struct b43legacy_pioqueue *queue, u8 *txhdr, const u8 *packet, unsigned int octets) argument
[all...]
H A Dxmit.c125 const u16 octets, const u8 bitrate)
134 B43legacy_WARN_ON(octets & 0xF000);
135 d |= (octets << 5);
140 plen = octets * 16 / bitrate;
141 if ((octets * 16 % bitrate) > 0) {
144 && ((octets * 8 % 11) < 4))
124 b43legacy_generate_plcp_hdr(struct b43legacy_plcp_hdr4 *plcp, const u16 octets, const u8 bitrate) argument
H A Dxmit.h195 const u16 octets, const u8 bitrate);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/dbus/
H A Ddbus-string.c929 #define ASSIGN_2_OCTETS(p, octets) \
930 *((dbus_uint16_t*)(p)) = *((dbus_uint16_t*)(octets));
933 #define ASSIGN_4_OCTETS(p, octets) \
934 *((dbus_uint32_t*)(p)) = *((dbus_uint32_t*)(octets));
938 #define ASSIGN_8_OCTETS(p, octets) \
939 *((dbus_uint64_t*)(p)) = *((dbus_uint64_t*)(octets));
942 #define ASSIGN_8_OCTETS(p, octets) \
948 *b++ = octets[0]; \
949 *b++ = octets[1]; \
950 *b++ = octets[
970 _dbus_string_insert_2_aligned(DBusString *str, int insert_at, const unsigned char octets[4]) argument
994 _dbus_string_insert_4_aligned(DBusString *str, int insert_at, const unsigned char octets[4]) argument
1018 _dbus_string_insert_8_aligned(DBusString *str, int insert_at, const unsigned char octets[8]) argument
[all...]
H A Ddbus-string.h163 const unsigned char octets[2]);
166 const unsigned char octets[4]);
169 const unsigned char octets[8]);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/net/irda/
H A Dirias_object.h92 void irias_add_octseq_attrib(struct ias_object *obj, char *name, __u8 *octets,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/
H A Dprint-cnfp.c71 u_int32_t octets; member in struct:nfrec
185 printf("tos %u, %u (%u octets) %s",
188 EXTRACT_32BITS(&nr->octets), buf);
H A Dprint-sflow.c299 u_int8_t octets[8]; member in struct:sflow_vlan_counter_t
327 printf("\n\t In octets %" PRIu64
337 printf("\n\t Out octets %" PRIu64
395 printf("\n\t in high prio frames %u, in high prio octets %" PRIu64,
398 printf("\n\t in norm prio frames %u, in norm prio octets %" PRIu64,
406 printf("\n\t out high prio frames %u, out high prio octets %" PRIu64
411 printf("\n\t in hc high prio octets %" PRIu64
412 ", in hc norm prio octets %" PRIu64
413 ", out hc high prio octets %" PRIu64,
430 printf("\n\t vlan_id %u, octets
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/octeon/
H A Dcvmx-pip.h184 /* Inbound octets marked to be dropped by the IPD */
190 /* Number of octets processed by PIP */
191 uint32_t octets; member in struct:__anon15570
233 * Total number of octets from all packets received by PIP,
377 status->octets = stat1.s.octs;
409 status->octets)
412 status->octets;
H A Dcvmx-pko.h120 uint64_t octets; member in struct:__anon15575
563 status->octets = pko_mem_count1.s.count;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/b43/
H A Dxmit.c119 const u16 octets, const u8 bitrate)
127 B43_WARN_ON(octets & 0xF000);
128 d |= (octets << 5);
133 plen = octets * 16 / bitrate;
134 if ((octets * 16 % bitrate) > 0) {
137 && ((octets * 8 % 11) < 4)) {
118 b43_generate_plcp_hdr(struct b43_plcp_hdr4 *plcp, const u16 octets, const u8 bitrate) argument
H A Dxmit.h292 const u16 octets, const u8 bitrate);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libvorbis-1.2.3/doc/
H A D05-comment.tex50 2) [vendor_string] = read a UTF-8 vector as [vendor_length] octets
54 6) this iteration's user comment = read a UTF-8 vector as [length] octets
214 Vendor string length (32 bit unsigned quantity specifying number of octets)
217 Vendor string ([vendor string length] octets coded from beginning of string to end of string, not null terminated)
223 Comment field 0 length (if [Number of comment fields] $>0$; 32 bit unsigned quantity specifying number of octets)
226 Comment field 0 ([Comment field 0 length] octets coded from beginning of string to end of string, not null terminated)
H A D02-bitpacking.tex13 native word size of eight bits (octets), sixteen bits, thirty-two bits
19 \subsubsection{octets, bytes and words}
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-compat-howl/include/corby/
H A Dbuffer.h136 sw_octets octets,
266 sw_octets octets,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/avahi-0.6.25/avahi-compat-howl/include/corby/
H A Dbuffer.h136 sw_octets octets,
266 sw_octets octets,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ocfs2/cluster/
H A Dnodemanager.c268 unsigned int octets[4]; local
271 ret = sscanf(page, "%3u.%3u.%3u.%3u", &octets[3], &octets[2],
272 &octets[1], &octets[0]);
276 for (i = 0; i < ARRAY_SIZE(octets); i++) {
277 if (octets[i] > 255)
279 be32_add_cpu(&ipv4_addr, octets[i] << (i * 8));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/irda/
H A Dirias_object.c356 void irias_add_octseq_attrib(struct ias_object *obj, char *name, __u8 *octets, argument
365 IRDA_ASSERT(octets != NULL, return;);
377 attrib->value = irias_new_octseq_value( octets, len);
490 * Function irias_new_octseq_value (octets, len)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/src/
H A Dhost.c435 int octets = 0;
450 if (++octets > 4)
457 if (octets == 4)
465 if (octets < 4)
433 int octets = 0; local
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/ipv4/
H A Dipconfig.c1295 int octets = 0; local
1299 while (octets < 4) {
1304 if (*cp == '.' || octets == 3)
1305 octets++;
1306 if (octets < 4)
1310 if (octets == 4 && (*cp == ':' || *cp == '\0')) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/ipv4/netfilter/
H A Dnf_nat_snmp_basic.c394 unsigned char **octets,
401 *octets = kmalloc(eoc - ctx->pointer, GFP_ATOMIC);
402 if (*octets == NULL) {
408 ptr = *octets;
411 kfree(*octets);
412 *octets = NULL;
392 asn1_octets_decode(struct asn1_ctx *ctx, unsigned char *eoc, unsigned char **octets, unsigned int *len) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/prism54/
H A Disl_oid.h31 char octets[33]; member in struct:obj_ssid

Completed in 492 milliseconds

12