HomeSort by: relevance | last modified time | path
    Searched defs:nextbyte (Results 1 - 9 of 9) sorted by relevancy

  /src/lib/libc/net/
base64.c 221 u_char nextbyte; local
256 nextbyte = (u_char)((pos - Base64) & 0x0f) << 4;
258 target[tarindex + 1] = nextbyte;
259 else if (nextbyte)
271 nextbyte = (u_char)((pos - Base64) & 0x03) << 6;
273 target[tarindex + 1] = nextbyte;
274 else if (nextbyte)
  /src/external/bsd/tmux/dist/compat/
base64.c 196 u_char nextbyte; local
227 nextbyte = ((pos - Base64) & 0x0f) << 4;
229 target[tarindex+1] = nextbyte;
230 else if (nextbyte)
241 nextbyte = ((pos - Base64) & 0x03) << 6;
243 target[tarindex+1] = nextbyte;
244 else if (nextbyte)
  /src/external/gpl3/binutils/dist/libiberty/
floatformat.c 448 int nextbyte = (order == floatformat_little) ? 1 : -1; local
470 cur_byte += nextbyte;
591 int nextbyte = (order == floatformat_little) ? 1 : -1;
613 cur_byte += nextbyte;
590 int nextbyte = (order == floatformat_little) ? 1 : -1; local
  /src/external/gpl3/binutils.old/dist/libiberty/
floatformat.c 448 int nextbyte = (order == floatformat_little) ? 1 : -1; local
470 cur_byte += nextbyte;
591 int nextbyte = (order == floatformat_little) ? 1 : -1;
613 cur_byte += nextbyte;
590 int nextbyte = (order == floatformat_little) ? 1 : -1; local
  /src/external/gpl3/gcc/dist/libiberty/
floatformat.c 453 int nextbyte = (order == floatformat_little) ? 1 : -1; local
475 cur_byte += nextbyte;
596 int nextbyte = (order == floatformat_little) ? 1 : -1;
618 cur_byte += nextbyte;
595 int nextbyte = (order == floatformat_little) ? 1 : -1; local
  /src/external/gpl3/gcc.old/dist/libiberty/
floatformat.c 453 int nextbyte = (order == floatformat_little) ? 1 : -1; local
475 cur_byte += nextbyte;
596 int nextbyte = (order == floatformat_little) ? 1 : -1;
618 cur_byte += nextbyte;
595 int nextbyte = (order == floatformat_little) ? 1 : -1; local
  /src/external/gpl3/gdb.old/dist/libiberty/
floatformat.c 448 int nextbyte = (order == floatformat_little) ? 1 : -1; local
470 cur_byte += nextbyte;
587 int nextbyte = (order == floatformat_little) ? 1 : -1;
609 cur_byte += nextbyte;
586 int nextbyte = (order == floatformat_little) ? 1 : -1; local
  /src/external/gpl3/gdb/dist/libiberty/
floatformat.c 448 int nextbyte = (order == floatformat_little) ? 1 : -1; local
470 cur_byte += nextbyte;
587 int nextbyte = (order == floatformat_little) ? 1 : -1;
609 cur_byte += nextbyte;
586 int nextbyte = (order == floatformat_little) ? 1 : -1; local
  /src/external/apache2/mDNSResponder/dist/mDNSCore/
DNSCommon.c 3284 const mDNSu8 *nextbyte = mDNSNULL; // Record where we got to before we started following pointers local
3319 if (!nextbyte) nextbyte = ptr; // Record where we got to before we started following pointers
3332 if (nextbyte) return(nextbyte);

Completed in 32 milliseconds