/linux-4.1.27/lib/ |
D | build_OID_registry | 95 my @octets = (); 99 push @octets, $components[0] * 40 + $components[1]; 109 push @octets, (($c >> $tmp * 7) & 0x7f) | 0x80; 111 push @octets, $c & 0x7f; 114 push @encoded_oids, \@octets; 122 my @octets = @{$encoded_oids[$i]}; 124 my $hash = $#octets; 125 foreach (@octets) { 140 my @octets = @{$encoded_oids[$i]}; 142 print C_FILE $_, ", " foreach (@octets); [all …]
|
D | oid_registry.c | 31 const unsigned char *octets = data; in look_up_OID() local 41 hash += octets[i] * 33; in look_up_OID() 80 unsigned char b = octets[len]; in look_up_OID()
|
/linux-4.1.27/drivers/net/wireless/b43legacy/ |
D | pio.c | 79 unsigned int octets) in tx_data() argument 92 while (i < octets - 1) { in tx_data() 97 if (octets % 2) in tx_data() 98 tx_octet(queue, packet[octets - in tx_data() 192 unsigned int octets; in pio_tx_write_fragment() local 206 octets = skb->len + txhdr_size; in pio_tx_write_fragment() 208 octets--; in pio_tx_write_fragment() 209 tx_data(queue, txhdr, (u8 *)skb->data, octets); in pio_tx_write_fragment() 234 u16 octets; in pio_tx_packet() local 237 octets = (u16)skb->len + sizeof(struct b43legacy_txhdr_fw3); in pio_tx_packet() [all …]
|
D | xmit.c | 125 const u16 octets, const u8 bitrate) in b43legacy_generate_plcp_hdr() argument 134 B43legacy_WARN_ON(octets & 0xF000); in b43legacy_generate_plcp_hdr() 135 d |= (octets << 5); in b43legacy_generate_plcp_hdr() 140 plen = octets * 16 / bitrate; in b43legacy_generate_plcp_hdr() 141 if ((octets * 16 % bitrate) > 0) { in b43legacy_generate_plcp_hdr() 144 && ((octets * 8 % 11) < 4)) in b43legacy_generate_plcp_hdr()
|
D | xmit.h | 195 const u16 octets, const u8 bitrate);
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-class-uwb_rc | 54 hex octets. 80 The EUI-48, in colon-separated hex octets, for this 117 hex octets. 126 octets. 140 space separated hex octets with one IE per line.
|
D | sysfs-wusb_cbaf | 58 hex octets. 92 octets. 99 Write 16 space-separated random, hex octets to
|
D | sysfs-class-uwb_rc-wusbhc | 6 Write the CHID (16 space-separated hex octets) for this host controller.
|
D | sysfs-bus-usb | 21 A devices's CDID, as 16 space-separated hex octets. 32 space-separated hex octets.
|
/linux-4.1.27/Documentation/networking/ |
D | altera_tse.txt | 227 This statistic counts the total number of packets received that were 64 octets 232 between 65 and 127 octets in length inclusive. 236 between 128 and 255 octets in length inclusive. 240 between 256 and 511 octets in length inclusive. 244 between 512 and 1023 octets in length inclusive. 248 between 1024 and 1518 octets in length inclusive. 257 octets, and had either a bad CRC with an integral number of octets (CRC Error) 258 or a bad CRC with a non-integral number of octets (Alignment Error). 261 statistic is the total number of packets received that were less than 64 octets 262 in length and had either a bad CRC with an integral number of octets (CRC [all …]
|
D | ieee802154.txt | 129 octets of actual MAC payload once security is turned on, on a wireless link
|
D | PLIP.txt | 196 ... data octets
|
/linux-4.1.27/arch/mips/include/asm/octeon/ |
D | cvmx-pip.h | 191 uint32_t octets; member 408 status->octets = stat1.s.octs; in cvmx_pip_get_port_status() 440 status->octets) in cvmx_pip_get_port_status() 443 status->octets; in cvmx_pip_get_port_status()
|
D | cvmx-pko.h | 120 uint64_t octets; member 594 status->octets = pko_mem_count1.s.count; in cvmx_pko_get_port_status()
|
/linux-4.1.27/fs/ocfs2/cluster/ |
D | nodemanager.c | 267 unsigned int octets[4]; in o2nm_node_ipv4_address_write() local 270 ret = sscanf(page, "%3u.%3u.%3u.%3u", &octets[3], &octets[2], in o2nm_node_ipv4_address_write() 271 &octets[1], &octets[0]); in o2nm_node_ipv4_address_write() 275 for (i = 0; i < ARRAY_SIZE(octets); i++) { in o2nm_node_ipv4_address_write() 276 if (octets[i] > 255) in o2nm_node_ipv4_address_write() 278 be32_add_cpu(&ipv4_addr, octets[i] << (i * 8)); in o2nm_node_ipv4_address_write()
|
/linux-4.1.27/drivers/net/wireless/b43/ |
D | xmit.c | 150 const u16 octets, const u8 bitrate) in b43_generate_plcp_hdr() argument 158 B43_WARN_ON(octets & 0xF000); in b43_generate_plcp_hdr() 159 d |= (octets << 5); in b43_generate_plcp_hdr() 164 plen = octets * 16 / bitrate; in b43_generate_plcp_hdr() 165 if ((octets * 16 % bitrate) > 0) { in b43_generate_plcp_hdr() 168 && ((octets * 8 % 11) < 4)) { in b43_generate_plcp_hdr()
|
D | xmit.h | 354 const u16 octets, const u8 bitrate);
|
/linux-4.1.27/net/irda/ |
D | irias_object.c | 354 void irias_add_octseq_attrib(struct ias_object *obj, char *name, __u8 *octets, in irias_add_octseq_attrib() argument 363 IRDA_ASSERT(octets != NULL, return;); in irias_add_octseq_attrib() 375 attrib->value = irias_new_octseq_value( octets, len); in irias_add_octseq_attrib()
|
/linux-4.1.27/net/ipv4/netfilter/ |
D | nf_nat_snmp_basic.c | 396 unsigned char **octets, in asn1_octets_decode() argument 403 *octets = kmalloc(eoc - ctx->pointer, GFP_ATOMIC); in asn1_octets_decode() 404 if (*octets == NULL) in asn1_octets_decode() 407 ptr = *octets; in asn1_octets_decode() 410 kfree(*octets); in asn1_octets_decode() 411 *octets = NULL; in asn1_octets_decode()
|
/linux-4.1.27/include/net/irda/ |
D | irias_object.h | 92 void irias_add_octseq_attrib(struct ias_object *obj, char *name, __u8 *octets,
|
/linux-4.1.27/net/ipv4/ |
D | ipconfig.c | 1344 int octets = 0; in root_nfs_parse_addr() local 1348 while (octets < 4) { in root_nfs_parse_addr() 1353 if (*cp == '.' || octets == 3) in root_nfs_parse_addr() 1354 octets++; in root_nfs_parse_addr() 1355 if (octets < 4) in root_nfs_parse_addr() 1359 if (octets == 4 && (*cp == ':' || *cp == '\0')) { in root_nfs_parse_addr()
|
/linux-4.1.27/arch/tile/include/hv/ |
D | drv_mpipe_intf.h | 160 uint8_t octets[6]; member
|
/linux-4.1.27/Documentation/netlabel/ |
D | draft-ietf-cipso-ipsecurity-01.txt | 111 restriction of 40 octets the value of this field MUST not exceed 40. 180 restrictions are based on the current IP limitation of 40 octets for all 249 The length of this field is variable and ranges from 0 to 30 octets. This 268 minimal encoding SHOULD be used resulting in no trailing zero octets in the 284 a constant length of 10 octets. Trailing octets required to fill out the 10 285 octets are zero filled. Ten octets, allowing for 80 categories, was chosen 286 because it makes the total length of the CIPSO option 20 octets. If CIPSO 288 filler octets will not be required. 348 octets. Up to 15 categories may be represented by this tag. Valid values
|
/linux-4.1.27/drivers/net/wireless/prism54/ |
D | isl_oid.h | 30 char octets[33]; member
|
D | isl_ioctl.c | 598 &iwe, bss->ssid.octets); in prism54_translate_bss() 741 memset(essid.octets, 0, 33); in prism54_set_essid() 748 memcpy(essid.octets, extra, dwrq->length); in prism54_set_essid() 781 essid->octets[dwrq->length] = '\0'; in prism54_get_essid() 782 memcpy(extra, essid->octets, dwrq->length); in prism54_get_essid()
|
D | oid_mgt.c | 869 ssid->octets); in mgt_response_to_str()
|
/linux-4.1.27/drivers/mtd/maps/ |
D | Kconfig | 59 int "Bank width in octets" 64 in octets. For example, if you have a data bus width of 32
|
/linux-4.1.27/drivers/staging/octeon/ |
D | ethernet.c | 244 priv->stats.tx_bytes += tx_status.octets; in cvm_oct_common_get_stats()
|
/linux-4.1.27/Documentation/isdn/ |
D | INTERFACE | 530 30 octets maximum. Empty string if no uus. 535 30 octets maximum. Empty string if no uus.
|
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb4/ |
D | cxgb4.h | 173 u64 octets; member
|