HomeSort by relevance Sort by last modified time
    Searched defs:byte (Results 1 - 25 of 70) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/cmd/krb5/krb5kdc/
sock2p.c 56 const unsigned char *byte = (const unsigned char *) local
59 byte[0] * 256 + byte[1],
60 byte[2] * 256 + byte[3],
61 byte[4] * 256 + byte[5],
62 byte[6] * 256 + byte[7],
63 byte[8] * 256 + byte[9]
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/
nfold.c 62 int byte, i, msbit; local
86 byte = 0;
91 /* compute the msbit in k which gets added into this byte */
93 byte */
95 /* then, for each byte, shift to the right for each
98 /* last, pick out the correct byte within that
103 /* pull out the byte value itself */
104 byte += (((in[((inbits-1)-(msbit>>3))%inbits]<<8)|
109 byte += out[i%outbits];
110 out[i%outbits] = byte&0xff
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/liblddbg/common/
elf.c 38 Byte *byte = &(ehdr->e_ident[0]); local
47 dbg_print(lml, MSG_ORIG(MSG_ELF_MAGIC), byte[EI_MAG0],
48 (byte[EI_MAG1] ? byte[EI_MAG1] : '0'),
49 (byte[EI_MAG2] ? byte[EI_MAG2] : '0'),
50 (byte[EI_MAG3] ? byte[EI_MAG3] : '0'));
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/
encengine.c 4 Perl works internally in either a native 'byte' encoding or
8 Most character encodings are either simple byte mappings or
9 variable length multi-byte encodings. UTF-8 can be viewed as a
13 "multi-byte -> multi-byte" case. The simple byte forms are then just degenerate
58 my $byte = $substr($src,0,1,'');
59 my $out_seq = $seq->[$byte];
68 ($next,$seq) = @$next->[$byte] if $next;
75 For the single byte case there is no 'next' so new tables will be the same a
106 U8 byte = *s; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/librtld_db/rdb_demo/common/
utils.c 139 unsigned char byte; local
142 if (ps_pread(ph, address, (char *)&byte,
144 fprintf(stderr, "\nfailed to read byte "
148 printf(" %02x", (unsigned)byte);
  /onnv/onnv-gate/usr/src/cmd/tic/
tic_read.c 142 unsigned char byte[OFFSET_BUFSIZE][2]; local
226 numread = read(fd, byte, 2*min(num_strings,
233 if (byte[i][0] == 0377 && byte[i][1] == 0377)
236 else if (byte[i][0] == 0376 &&
237 byte[i][1] == 0377)
241 US[i + cur_string] = (byte[i][0] +
242 256*byte[i][1]) + pst;
282 * Test whether this machine will need byte-swapping
291 char byte[2] member in union:__anon1855
    [all...]
  /onnv/onnv-gate/usr/src/lib/libcurses/screen/
wgetstr.c 63 int byte[LENGTH]; local
120 cp -= byte[cpos];
159 byte[cpos] = eucw;
168 byte[cpos] = 1;
  /onnv/onnv-gate/usr/src/uts/sun4u/io/i2c/clients/
pcf8574.c 221 pcf8574_get(struct pcf8574_unit *unitp, uchar_t *byte) {
247 *byte = i2c_tran_pointer->i2c_rbuf[0];
254 pcf8574_set(struct pcf8574_unit *unitp, uchar_t byte) {
268 i2c_tran_pointer->i2c_wbuf[0] = byte;
295 uchar_t byte; local
325 err = pcf8574_get(unitp, &byte);
333 ioctl_port.value = byte;
343 byte));
383 err = pcf8574_get(unitp, &byte);
391 D1CMN_ERR((CE_NOTE, "%s: byte returned from device is %x\n"
    [all...]
ssc100.c 224 ssc100_common(struct ssc100_unit *unitp, uchar_t *byte, uchar_t input,
249 *byte = i2c_tran_pointer->i2c_rbuf[0];
257 ssc100_get_reg(struct ssc100_unit *unitp, uchar_t *byte, uchar_t reg)
261 err = ssc100_common(unitp, byte, reg, I2C_WR_RD);
270 ssc100_get(struct ssc100_unit *unitp, uchar_t *byte)
274 err = ssc100_common(unitp, byte, 0, I2C_RD);
283 ssc100_set(struct ssc100_unit *unitp, uchar_t byte)
287 err = ssc100_common(unitp, NULL, byte, I2C_WR);
307 uchar_t byte; local
336 err = ssc100_get(unitp, &byte);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dumpcs/
dumpcs.c 177 * prcode() prints series of len-byte codes, of which each byte can
184 int byte, i, nextpos; local
191 for (byte = min; byte <= max; byte++) {
192 codestr[pos] = (unsigned char) byte;
198 for (byte = min; byte <= max; byte++)
    [all...]
  /onnv/onnv-gate/usr/src/common/smbsrv/
smb_common_door_decode.c 323 smb_dr_put_BYTE(smb_dr_ctx_t *ctx, BYTE byte)
326 if (ctx->ptr + sizeof (BYTE) <= ctx->end_ptr) {
327 (void) memcpy(ctx->ptr, &byte, sizeof (BYTE));
328 ctx->ptr += sizeof (BYTE);
334 BYTE
337 BYTE byte = 0; local
339 if (ctx->ptr + sizeof (BYTE) <= ctx->end_ptr)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libdisasm/i386/
dis_i386.c 72 uchar_t byte; local
75 if (dhp->dh_read(dhp->dh_data, dhp->dh_addr, &byte, sizeof (byte)) !=
76 sizeof (byte))
81 return ((int)byte);
  /onnv/onnv-gate/usr/src/lib/libldap4/util/
line64.c 62 char *p, *s, *d, *byte, *stop; local
121 byte = s;
135 byte[0] = nib << 2;
138 byte[0] |= nib >> 4;
139 byte[1] = (nib & RIGHT4) << 4;
146 byte[1] |= nib >> 2;
147 byte[2] = (nib & RIGHT2) << 6;
154 byte[2] |= nib;
156 byte += 3;
276 unsigned char *byte, *p, *stop local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/inet/ip/
inet_ntop.c 234 long byte; local
239 if (ddi_strtol(cp, &end, 10, &byte) != 0 || byte < 0 ||
240 byte > 255) {
243 addr = (addr << 8) | (uint8_t)byte;
270 long byte; local
311 if ((error = ddi_strtol(inp, &end, 16, &byte)) != 0) {
314 byte = 0;
316 if (byte < 0 || byte > 0x0ffff)
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/nxge/
nxge_fflp_hash.c 115 uint32_t index, bit, byte, crc; local
119 for (byte = 0; byte < 4; byte++) {
125 crc32c_tab[3 - byte][index] = flip32(reflect_32(crc));
127 crc32c_tab[byte][index] = reflect_32(crc);
141 uint16_t index, bit, byte; local
145 for (byte = 0; byte < 4; byte++)
281 uint32_t crc, bit, byte, index; local
305 int bit, byte; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/sun4u/io/
gpio_87317.c 348 uint8_t byte; local
370 byte = ddi_get8(softc->gp_handle, &softc->gp_regs[info.gpio_offset]);
374 DBG(softc->gp_dip, "ioctl: SET_BITS, byte is %x", byte, 0, 0,
376 byte |= info.gpio_data;
378 byte);
379 byte = ddi_get8(softc->gp_handle,
381 DBG(softc->gp_dip, "ioctl: SET_BITS, byte is %x", byte, 0, 0,
386 DBG(softc->gp_dip, "ioctl: CLR_BITS, byte is %x", byte, 0, 0
    [all...]
  /onnv/onnv-gate/usr/src/uts/sun4u/littleneck/io/
pcf8574_lneck.c 232 pcf8574_get(struct pcf8574_unit *unitp, uchar_t *byte) {
259 *byte = i2c_tran_pointer->i2c_rbuf[0];
266 pcf8574_set(struct pcf8574_unit *unitp, uchar_t byte) {
280 i2c_tran_pointer->i2c_wbuf[0] = byte;
307 uchar_t byte; local
337 err = pcf8574_get(unitp, &byte);
345 ioctl_port.value = byte;
355 byte));
395 err = pcf8574_get(unitp, &byte);
403 D1CMN_ERR((CE_NOTE, "%s: byte returned from device is %x\n"
617 uint8_t byte; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libntfs/common/libntfs/
lcnalloc.c 110 u8 *buf, *byte; local
249 byte = buf + (lcn >> 3);
252 "need_writeback = %i, byte ofs = 0x%x, "
253 "*byte = 0x%x.\n", buf_size,
256 (unsigned int)*byte);
258 if (*byte == 0xff) {
266 if (*byte & bit) {
290 *byte |= bit;
294 ntfs_log_trace("*byte = 0x%x, need_writeback is set.\n",
295 (unsigned int)*byte);
    [all...]
mft.c 294 /* Aligned to 2-byte boundary. */
330 /* Aligned to 8-byte boundary. */
336 * aligned to 8-byte boundary.
429 u8 *buf, *byte; local
469 byte = NULL;
487 /* If we read at least one byte, search @buf for a zero bit. */
494 "*byte 0x%hhx, b %u.\n", size,
496 byte ? *byte : -1, b);
499 byte = buf + (bit >> 3)
    [all...]
  /onnv/onnv-gate/usr/src/common/tsol/
stol.c 67 uchar_t byte; local
74 byte = ch - '0';
76 byte = ch - (isupper(ch) ? 'A' - 10 : 'a' - 10);
77 byte <<= 4;
82 byte |= ch - '0';
84 byte |= ch - (isupper(ch) ? 'A' - 10 : 'a' - 10);
85 *l++ = byte;
  /onnv/onnv-gate/usr/src/lib/libfruutils/
fru_tag.h 41 unsigned char byte[8]; member in union:__anon37
83 char byte[8]; member in union:__anon45
  /onnv/onnv-gate/usr/src/cmd/fs.d/pcfs/fsck/
pcfs_common.c 139 * b is the pointer to the byte buffer
152 int byte; local
161 for (byte = 0; byte < BPL; byte++) {
162 if (countup + byte < n) {
164 "%02x ", (buf[countup + byte] & 0xff));
174 for (byte = 0; byte < BPL; byte++)
197 int byte; local
    [all...]
  /onnv/onnv-gate/usr/src/grub/grub-0.97/netboot/
pci.c 319 unsigned char byte; local
323 pcibios_read_config_byte(bus, devfn, i, &byte);
324 printf("%hhx ", byte);
  /onnv/onnv-gate/usr/src/lib/libldap5/sources/ldap/util/
line64.c 207 unsigned char nib, *byte; local
211 byte = dst;
222 byte[0] = nib << 2;
226 byte[0] |= nib >> 4;
233 byte[1] = (nib & RIGHT4) << 4;
235 byte[1] |= nib >> 2;
242 byte[2] = (nib & RIGHT2) << 6;
244 byte[2] |= nib;
246 byte += 3;
327 unsigned char *p, *byte, *stop local
433 unsigned char *byte, *stop; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libmalloc/common/
mallint.h 92 char byte; member in struct:lblk

Completed in 480 milliseconds

1 2 3