HomeSort by relevance Sort by last modified time
    Searched refs:bitp (Results 1 - 7 of 7) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/codecs/g711/test/
testG711.cc 39 FILE* bitp = NULL; local
96 if ((bitp = fopen(bitname, "wb")) == NULL) {
131 if (fwrite(streamdata, sizeof(unsigned char), stream_len, bitp) !=
142 if (fwrite(streamdata, sizeof(unsigned char), stream_len, bitp) !=
  /external/zopfli/src/zopflipng/lodepng/
lodepng_util.cpp 294 unsigned long readBitFromStream(size_t& bitp, const unsigned char* bits)
296 unsigned long result = (bits[bitp >> 3] >> (bitp & 0x7)) & 1;
297 bitp++;
301 unsigned long readBitsFromStream(size_t& bitp, const unsigned char* bits, size_t nbits)
304 for(size_t i = 0; i < nbits; i++) result += (readBitFromStream(bitp, bits)) << i;
623 unsigned long readBitFromReversedStream(size_t& bitp, const unsigned char* bits)
625 unsigned long result = (bits[bitp >> 3] >> (7 - (bitp & 0x7))) & 1;
626 bitp++
    [all...]
  /external/tcpdump/
print-domain.c 89 const u_char *bitp, *lim; local
101 for (bitp = cp + 1, b = bitlen; bitp < lim && b > 7; b -= 8, bitp++) {
102 ND_TCHECK(*bitp);
103 ND_PRINT((ndo, "%02x", *bitp));
106 ND_TCHECK(*bitp);
107 tc = *bitp++;
110 ND_TCHECK(*bitp);
111 tc = *bitp++
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
mbitmap.go 168 bitp *uint8
462 prefetchnta(uintptr(unsafe.Pointer((h.bitp))))
473 return heapBits{h.bitp, h.shift + heapBitsShift}
475 return heapBits{subtract1(h.bitp), 0}
485 return heapBits{subtractb(h.bitp, n/4), uint32(n%4) * heapBitsShift}
494 return uint32(*h.bitp) >> (h.shift & 31)
519 return (*h.bitp>>h.shift)&bitScan != 0
528 return (*h.bitp>>h.shift)&bitPointer != 0
533 // same heap bitmap byte, *h.bitp.
534 return (*h.bitp>>(heapBitsShift+h.shift))&bitScan !=
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
mbitmap.go 168 bitp *uint8
462 prefetchnta(uintptr(unsafe.Pointer((h.bitp))))
473 return heapBits{h.bitp, h.shift + heapBitsShift}
475 return heapBits{subtract1(h.bitp), 0}
485 return heapBits{subtractb(h.bitp, n/4), uint32(n%4) * heapBitsShift}
494 return uint32(*h.bitp) >> (h.shift & 31)
519 return (*h.bitp>>h.shift)&bitScan != 0
528 return (*h.bitp>>h.shift)&bitPointer != 0
533 // same heap bitmap byte, *h.bitp.
534 return (*h.bitp>>(heapBitsShift+h.shift))&bitScan !=
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-rl78.c 239 int bytep, bitp; local
255 bitp = pos % 8;
257 while (bitp + sz > 8)
259 int ssz = 8 - bitp;
264 svalm = svalm << (8 - bitp - ssz);
268 bitp = 0;
273 valm = valm << (8 - bitp - sz);
    [all...]
tc-rx.c 858 int bytep, bitp;
874 bitp = pos % 8;
876 while (bitp + sz > 8)
878 int ssz = 8 - bitp;
883 svalm = svalm << (8 - bitp - ssz);
887 bitp = 0;
892 valm = valm << (8 - bitp - sz);
857 int bytep, bitp; local
    [all...]

Completed in 2745 milliseconds