HomeSort by: relevance | last modified time | path
    Searched refs:nibble (Results 1 - 25 of 72) sorted by relevancy

1 2 3

  /src/lib/libbluetooth/
bluetooth.c 61 static int bt_hex_nibble (char nibble);
361 bt_hex_nibble(char nibble)
363 if ('0' <= nibble && nibble <= '9')
364 return (nibble - '0');
366 if ('a' <= nibble && nibble <= 'f')
367 return (nibble - 'a' + 0xa);
369 if ('A' <= nibble && nibble <= 'F'
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbsupport/
rsp-low.h 27 /* Write a character representing the low order four bits of NIBBLE in
30 extern char *pack_nibble (char *buf, int nibble);
rsp-low.cc 61 pack_nibble (char *buf, int nibble)
63 *buf++ = hexchars[(nibble & 0x0f)];
83 int nibble; local
86 while (ishex (*buff, &nibble))
90 retval |= nibble & 0x0f;
  /src/external/gpl3/gdb/dist/gdbsupport/
rsp-low.h 27 /* Write a character representing the low order four bits of NIBBLE in
30 extern char *pack_nibble (char *buf, int nibble);
rsp-low.cc 61 pack_nibble (char *buf, int nibble)
63 *buf++ = hexchars[(nibble & 0x0f)];
83 int nibble; local
86 while (ishex (*buff, &nibble))
90 retval |= nibble & 0x0f;
  /src/external/gpl3/gcc/dist/libcody/
buffer.cc 129 char nibble = (c >> shift) & 0xf; local
130 nibble += S2C(u8"0");
131 if (nibble > S2C(u8"9"))
132 nibble += S2C(u8"a") - (S2C(u8"9") + 1);
133 buffer.push_back (nibble);
330 for (unsigned nibble = 0; nibble != 2; nibble++)
335 if (!nibble)
343 if (!nibble)
    [all...]
  /src/external/gpl3/gcc.old/dist/libcody/
buffer.cc 129 char nibble = (c >> shift) & 0xf; local
130 nibble += S2C(u8"0");
131 if (nibble > S2C(u8"9"))
132 nibble += S2C(u8"a") - (S2C(u8"9") + 1);
133 buffer.push_back (nibble);
330 for (unsigned nibble = 0; nibble != 2; nibble++)
335 if (!nibble)
343 if (!nibble)
    [all...]
  /src/sys/dev/rasops/
rasops_putchar_width.h 77 #define SUBST_GLYPH1(index, nibble, off) \
79 int so = STAMP_SHIFT(fr[index], nibble) & STAMP_MASK; \
92 #define SUBST_GLYPH1(index, nibble, off) \
94 int so = STAMP_SHIFT(fr[index], nibble) & STAMP_MASK; \
112 #define SUBST_GLYPH1(index, nibble, off) \
114 int so = STAMP_SHIFT(fr[index], nibble) & STAMP_MASK; \
130 #define SUBST_GLYPH1(index, nibble, off) \
132 int so = STAMP_SHIFT(fr[index], nibble) & STAMP_MASK; \
  /src/crypto/external/apache2/openssl/dist/crypto/ml_dsa/
ml_dsa_sample.c 32 typedef int(COEFF_FROM_NIBBLE_FUNC)(uint32_t nibble, uint32_t *out);
61 * @param nibble A value in the range 0..15
62 * @param out The returned value if the range (q-4)..0..4 if nibble is < 9
63 * @returns 1 nibble was in range, or 0 if the nibble was rejected.
65 static ossl_inline int coeff_from_nibble_4(uint32_t nibble, uint32_t *out)
71 if (value_barrier_32(nibble < 9)) {
72 *out = mod_sub(4, nibble);
84 * @param nibble A value in the range 0..15
85 * @param out The returned value if the range (q-2)..0..2 if nibble is < 1
    [all...]
  /src/external/bsd/openldap/dist/libraries/liblutil/
uuid.c 395 unsigned char nibble; local
410 nibble = (uuid[i] >> 4) & 0xF;
411 if ( nibble < 10 ) {
412 buf[(i<<1)+d] = nibble + '0';
414 buf[(i<<1)+d] = nibble - 10 + 'a';
417 nibble = (uuid[i]) & 0xF;
418 if ( nibble < 10 ) {
419 buf[(i<<1)+d+1] = nibble + '0';
421 buf[(i<<1)+d+1] = nibble - 10 + 'a';
  /src/sys/dev/pckbport/
alps.c 351 * Write nibble (4-bit) data
354 pms_alps_cm_write_nibble(pckbport_tag_t tag, pckbport_slot_t slot, uint8_t nibble)
362 sendparam = alps_v7_nibble_command_data_arr[nibble].sendparam;
363 receive= alps_v7_nibble_command_data_arr[nibble].receive;
364 cmd[0] = alps_v7_nibble_command_data_arr[nibble].command;
367 aprint_error("send nibble error: %d\n", res);
370 cmd[1] = alps_v7_nibble_command_data_arr[nibble].data;
372 aprint_error("send nibble error: %d\n", res);
376 aprint_error("send nibble error: %d\n", res);
390 uint8_t nibble; local
461 uint8_t nibble; local
655 uint8_t nibble; local
    [all...]
  /src/sys/arch/vax/vax/
emulate.S 384 subl2 %r1,%r9 # %r9 = "addition" of operands high nibble
389 addl2 %r0,%r1 # %r1 = carry + next (low) nibble of source
392 subl2 %r0,%r1 # %r1 -= next (low) nibble of destination
400 insv %r1,$0,$4,(%r3) # store result low nibble
403 addl2 %r0,%r9 # %r9 = carry + next (high) nibble of source
405 subl2 %r0,%r9 # %r9 -= next (high) nibble of destination
414 insv %r9,$4,$4,(%r3) # store result high nibble
423 addl2 %r0,%r1 # %r1 == carry += next (low) nibble
434 addl2 %r0,%r9 # %r9 == carry += next (high) nibble
468 extzv $0,$4,(%r3),%r0 # low nibble = (9 + carry) - low nibbl
    [all...]
  /src/external/gpl3/binutils/dist/opcodes/
z8k-dis.c 32 /* These are all indexed by nibble number (i.e only every other entry
38 /* Nibble number of first word not yet fetched. */
59 #define FETCH_DATA(info, nibble) \
60 ((nibble) < ((instr_data_s *) (info->private_data))->max_fetched \
61 ? 1 : fetch_data ((info), (nibble)))
64 fetch_data (struct disassemble_info *info, int nibble)
70 if ((nibble % 4) != 0)
75 nibble / 2,
87 for (i = 0; i < nibble;)
103 priv->max_fetched = nibble;
    [all...]
  /src/external/gpl3/binutils.old/dist/opcodes/
z8k-dis.c 32 /* These are all indexed by nibble number (i.e only every other entry
38 /* Nibble number of first word not yet fetched. */
59 #define FETCH_DATA(info, nibble) \
60 ((nibble) < ((instr_data_s *) (info->private_data))->max_fetched \
61 ? 1 : fetch_data ((info), (nibble)))
64 fetch_data (struct disassemble_info *info, int nibble)
70 if ((nibble % 4) != 0)
75 nibble / 2,
87 for (i = 0; i < nibble;)
103 priv->max_fetched = nibble;
    [all...]
  /src/external/gpl3/gdb.old/dist/opcodes/
z8k-dis.c 32 /* These are all indexed by nibble number (i.e only every other entry
38 /* Nibble number of first word not yet fetched. */
59 #define FETCH_DATA(info, nibble) \
60 ((nibble) < ((instr_data_s *) (info->private_data))->max_fetched \
61 ? 1 : fetch_data ((info), (nibble)))
64 fetch_data (struct disassemble_info *info, int nibble)
70 if ((nibble % 4) != 0)
75 nibble / 2,
87 for (i = 0; i < nibble;)
103 priv->max_fetched = nibble;
    [all...]
  /src/external/gpl3/gdb/dist/opcodes/
z8k-dis.c 32 /* These are all indexed by nibble number (i.e only every other entry
38 /* Nibble number of first word not yet fetched. */
59 #define FETCH_DATA(info, nibble) \
60 ((nibble) < ((instr_data_s *) (info->private_data))->max_fetched \
61 ? 1 : fetch_data ((info), (nibble)))
64 fetch_data (struct disassemble_info *info, int nibble)
70 if ((nibble % 4) != 0)
75 nibble / 2,
87 for (i = 0; i < nibble;)
103 priv->max_fetched = nibble;
    [all...]
  /src/external/gpl3/gcc/dist/libdecnumber/dpd/
decimal64.c 751 uInt nibble; /* work */ local
795 nibble=bcd & 0x00f;
796 if (nibble) out=(Unit)(out+nibble*DECPOWERS[cut]);
807 nibble=bcd & 0x00f;
808 if (nibble) out=(Unit)(out+nibble*DECPOWERS[cut]);
813 nibble=bcd & 0x00f;
814 if (nibble) out=(Unit)(out+nibble*DECPOWERS[cut])
    [all...]
  /src/external/gpl3/gcc.old/dist/libdecnumber/dpd/
decimal64.c 752 uInt nibble; /* work */ local
796 nibble=bcd & 0x00f;
797 if (nibble) out=(Unit)(out+nibble*DECPOWERS[cut]);
808 nibble=bcd & 0x00f;
809 if (nibble) out=(Unit)(out+nibble*DECPOWERS[cut]);
814 nibble=bcd & 0x00f;
815 if (nibble) out=(Unit)(out+nibble*DECPOWERS[cut])
    [all...]
  /src/external/gpl3/gdb/dist/libdecnumber/dpd/
decimal64.c 752 uInt nibble; /* work */ local
796 nibble=bcd & 0x00f;
797 if (nibble) out=(Unit)(out+nibble*DECPOWERS[cut]);
808 nibble=bcd & 0x00f;
809 if (nibble) out=(Unit)(out+nibble*DECPOWERS[cut]);
814 nibble=bcd & 0x00f;
815 if (nibble) out=(Unit)(out+nibble*DECPOWERS[cut])
    [all...]
  /src/external/gpl3/gdb.old/dist/libdecnumber/dpd/
decimal64.c 752 uInt nibble; /* work */ local
796 nibble=bcd & 0x00f;
797 if (nibble) out=(Unit)(out+nibble*DECPOWERS[cut]);
808 nibble=bcd & 0x00f;
809 if (nibble) out=(Unit)(out+nibble*DECPOWERS[cut]);
814 nibble=bcd & 0x00f;
815 if (nibble) out=(Unit)(out+nibble*DECPOWERS[cut])
    [all...]
  /src/external/gpl3/binutils/dist/libiberty/
rust-demangle.c 302 decode_lower_hex_nibble (char nibble)
304 if ('0' <= nibble && nibble <= '9')
305 return nibble - '0';
306 if ('a' <= nibble && nibble <= 'f')
307 return 0xa + (nibble - 'a');
1340 int nibble; local
1349 nibble = decode_lower_hex_nibble (ident.ascii[1 + i]);
1350 if (nibble < 0
    [all...]
  /src/external/gpl3/binutils.old/dist/libiberty/
rust-demangle.c 302 decode_lower_hex_nibble (char nibble)
304 if ('0' <= nibble && nibble <= '9')
305 return nibble - '0';
306 if ('a' <= nibble && nibble <= 'f')
307 return 0xa + (nibble - 'a');
1340 int nibble; local
1349 nibble = decode_lower_hex_nibble (ident.ascii[1 + i]);
1350 if (nibble < 0
    [all...]
  /src/external/gpl3/gcc/dist/libiberty/
rust-demangle.c 302 decode_lower_hex_nibble (char nibble)
304 if ('0' <= nibble && nibble <= '9')
305 return nibble - '0';
306 if ('a' <= nibble && nibble <= 'f')
307 return 0xa + (nibble - 'a');
1340 int nibble; local
1349 nibble = decode_lower_hex_nibble (ident.ascii[1 + i]);
1350 if (nibble < 0
    [all...]
  /src/external/gpl3/gcc.old/dist/libiberty/
rust-demangle.c 302 decode_lower_hex_nibble (char nibble)
304 if ('0' <= nibble && nibble <= '9')
305 return nibble - '0';
306 if ('a' <= nibble && nibble <= 'f')
307 return 0xa + (nibble - 'a');
1311 int nibble; local
1320 nibble = decode_lower_hex_nibble (ident.ascii[1 + i]);
1321 if (nibble < 0
    [all...]
  /src/external/gpl3/gdb.old/dist/libiberty/
rust-demangle.c 302 decode_lower_hex_nibble (char nibble)
304 if ('0' <= nibble && nibble <= '9')
305 return nibble - '0';
306 if ('a' <= nibble && nibble <= 'f')
307 return 0xa + (nibble - 'a');
1340 int nibble; local
1349 nibble = decode_lower_hex_nibble (ident.ascii[1 + i]);
1350 if (nibble < 0
    [all...]

Completed in 39 milliseconds

1 2 3