Searched refs:bitp (Results 1 – 6 of 6) sorted by relevance
/external/webrtc/modules/audio_coding/codecs/g711/test/ |
D | testG711.cc | 39 FILE* bitp = NULL; in main() local 95 if ((bitp = fopen(bitname, "wb")) == NULL) { in main() 130 if (fwrite(streamdata, sizeof(unsigned char), stream_len, bitp) != in main() 141 if (fwrite(streamdata, sizeof(unsigned char), stream_len, bitp) != in main()
|
/external/zopfli/src/zopflipng/lodepng/ |
D | lodepng_util.cpp | 294 unsigned long readBitFromStream(size_t& bitp, const unsigned char* bits) in readBitFromStream() 296 unsigned long result = (bits[bitp >> 3] >> (bitp & 0x7)) & 1; in readBitFromStream() 297 bitp++; in readBitFromStream() 301 unsigned long readBitsFromStream(size_t& bitp, const unsigned char* bits, size_t nbits) in readBitsFromStream() 304 for(size_t i = 0; i < nbits; i++) result += (readBitFromStream(bitp, bits)) << i; in readBitsFromStream() 623 unsigned long readBitFromReversedStream(size_t& bitp, const unsigned char* bits) in readBitFromReversedStream() 625 unsigned long result = (bits[bitp >> 3] >> (7 - (bitp & 0x7))) & 1; in readBitFromReversedStream() 626 bitp++; in readBitFromReversedStream() 630 …unsigned long readBitsFromReversedStream(size_t& bitp, const unsigned char* bits, unsigned long nb… in readBitsFromReversedStream() 633 …for(size_t i = nbits - 1; i < nbits; i--) result += ((readBitFromReversedStream(bitp, bits)) << i); in readBitsFromReversedStream() [all …]
|
/external/tcpdump/ |
D | print-domain.c | 91 const u_char *bitp, *lim; in blabel_print() local 103 for (bitp = cp + 1, b = bitlen; bitp < lim && b > 7; b -= 8, bitp++) { in blabel_print() 104 ND_TCHECK(*bitp); in blabel_print() 105 ND_PRINT((ndo, "%02x", *bitp)); in blabel_print() 108 ND_TCHECK(*bitp); in blabel_print() 109 tc = *bitp++; in blabel_print() 112 ND_TCHECK(*bitp); in blabel_print() 113 tc = *bitp++; in blabel_print()
|
/external/llvm/lib/Target/XCore/ |
D | XCoreInstrFormats.td | 72 // 2RUS with bitp operand 89 // L2RUS with bitp operand 188 // RUS with bitp operand 195 // RUS with first operand as both a source and a destination and a bitp second
|
/external/llvm-project/llvm/lib/Target/XCore/ |
D | XCoreInstrFormats.td | 71 // 2RUS with bitp operand 88 // L2RUS with bitp operand 187 // RUS with bitp operand 194 // RUS with first operand as both a source and a destination and a bitp second
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/ |
D | XCoreInstrFormats.td | 71 // 2RUS with bitp operand 88 // L2RUS with bitp operand 187 // RUS with bitp operand 194 // RUS with first operand as both a source and a destination and a bitp second
|