| /external/brotli/c/dec/ |
| D | bit_reader.h | 83 const BrotliBitReader* br) { in BrotliGetAvailableBits() 90 static BROTLI_INLINE size_t BrotliGetRemainingBytes(BrotliBitReader* br) { in BrotliGetRemainingBytes() 99 BrotliBitReader* const br, size_t num) { in BrotliCheckInputAmount() 108 BrotliBitReader* const br, uint32_t n_bits) { in BrotliFillBitWindow() 159 static BROTLI_INLINE void BrotliFillBitWindow16(BrotliBitReader* const br) { in BrotliFillBitWindow16() 165 static BROTLI_INLINE BROTLI_BOOL BrotliPullByte(BrotliBitReader* const br) { in BrotliPullByte() 184 BrotliBitReader* const br) { in BrotliGetBitsUnmasked() 191 BrotliBitReader* const br) { in BrotliGet16BitsUnmasked() 199 BrotliBitReader* const br, uint32_t n_bits) { in BrotliGetBits() 207 BrotliBitReader* const br, uint32_t n_bits, uint32_t* val) { in BrotliSafeGetBits() [all …]
|
| D | decode.c | 135 BrotliBitReader* br) { in DecodeWindowBits() 182 BrotliDecoderState* s, BrotliBitReader* br, uint32_t* value) { in DecodeVarLenUint8() 226 BrotliDecoderState* s, BrotliBitReader* br) { in DecodeMetaBlockLength() 352 BrotliBitReader* br) { in DecodeSymbol() 369 BrotliBitReader* br) { in ReadSymbol() 376 const HuffmanCode* table, BrotliBitReader* br, uint32_t* result) { in SafeDecodeSymbol() 416 const HuffmanCode* table, BrotliBitReader* br, uint32_t* result) { in SafeReadSymbol() 428 BrotliBitReader* br, in PreloadSymbol() 443 BrotliBitReader* br, in ReadPreloadedSymbol() 479 BrotliBitReader* br = &s->br; in ReadSimpleHuffmanSymbols() local [all …]
|
| D | bit_reader.c | 29 void BrotliInitBitReader(BrotliBitReader* const br) { in BrotliInitBitReader() 34 BROTLI_BOOL BrotliWarmupBitReader(BrotliBitReader* const br) { in BrotliWarmupBitReader() 57 BROTLI_BOOL BrotliSafeReadBits32Slow(BrotliBitReader* const br, in BrotliSafeReadBits32Slow()
|
| /external/cronet/third_party/brotli/dec/ |
| D | bit_reader.h | 83 const BrotliBitReader* br) { in BrotliGetAvailableBits() 90 static BROTLI_INLINE size_t BrotliGetRemainingBytes(BrotliBitReader* br) { in BrotliGetRemainingBytes() 99 BrotliBitReader* const br, size_t num) { in BrotliCheckInputAmount() 108 BrotliBitReader* const br, uint32_t n_bits) { in BrotliFillBitWindow() 169 static BROTLI_INLINE void BrotliFillBitWindow16(BrotliBitReader* const br) { in BrotliFillBitWindow16() 175 static BROTLI_INLINE BROTLI_BOOL BrotliPullByte(BrotliBitReader* const br) { in BrotliPullByte() 194 BrotliBitReader* const br) { in BrotliGetBitsUnmasked() 201 BrotliBitReader* const br) { in BrotliGet16BitsUnmasked() 209 BrotliBitReader* const br, uint32_t n_bits) { in BrotliGetBits() 217 BrotliBitReader* const br, uint32_t n_bits, uint32_t* val) { in BrotliSafeGetBits() [all …]
|
| D | bit_reader.c | 29 void BrotliInitBitReader(BrotliBitReader* const br) { in BrotliInitBitReader() 34 BROTLI_BOOL BrotliWarmupBitReader(BrotliBitReader* const br) { in BrotliWarmupBitReader() 57 BROTLI_BOOL BrotliSafeReadBits32Slow(BrotliBitReader* const br, in BrotliSafeReadBits32Slow()
|
| D | decode.c | 136 BrotliBitReader* br) { in DecodeWindowBits() 183 BrotliDecoderState* s, BrotliBitReader* br, uint32_t* value) { in DecodeVarLenUint8() 227 BrotliDecoderState* s, BrotliBitReader* br) { in DecodeMetaBlockLength() 353 BrotliBitReader* br) { in DecodeSymbol() 370 BrotliBitReader* br) { in ReadSymbol() 377 const HuffmanCode* table, BrotliBitReader* br, uint32_t* result) { in SafeDecodeSymbol() 417 const HuffmanCode* table, BrotliBitReader* br, uint32_t* result) { in SafeReadSymbol() 429 BrotliBitReader* br, in PreloadSymbol() 444 BrotliBitReader* br, in ReadPreloadedSymbol() 480 BrotliBitReader* br = &s->br; in ReadSimpleHuffmanSymbols() local [all …]
|
| /external/flac/src/libFLAC/ |
| D | bitreader.c | 121 static inline void crc16_update_word_(FLAC__BitReader *br, brword word) in crc16_update_word_() argument 134 static inline void crc16_update_block_(FLAC__BitReader *br) in crc16_update_block_() 156 static FLAC__bool bitreader_read_from_client_(FLAC__BitReader *br) in bitreader_read_from_client_() 257 FLAC__BitReader *br = calloc(1, sizeof(FLAC__BitReader)); in FLAC__bitreader_new() local 271 void FLAC__bitreader_delete(FLAC__BitReader *br) in FLAC__bitreader_delete() 285 FLAC__bool FLAC__bitreader_init(FLAC__BitReader *br, FLAC__BitReaderReadCallback rcb, void *cd) in FLAC__bitreader_init() 304 void FLAC__bitreader_free(FLAC__BitReader *br) in FLAC__bitreader_free() 321 FLAC__bool FLAC__bitreader_clear(FLAC__BitReader *br) in FLAC__bitreader_clear() 331 void FLAC__bitreader_set_framesync_location(FLAC__BitReader *br) in FLAC__bitreader_set_framesync_location() 336 FLAC__bool FLAC__bitreader_rewind_to_after_last_seen_framesync(FLAC__BitReader *br) in FLAC__bitreader_rewind_to_after_last_seen_framesync() [all …]
|
| /external/brotli/csharp/org/brotli/dec/ |
| D | BitReader.cs | 55 internal static void ReadMoreInput(Org.Brotli.Dec.BitReader br) in ReadMoreInput() 97 internal static void CheckHealth(Org.Brotli.Dec.BitReader br, bool endOfStream) in CheckHealth() 115 internal static void FillBitWindow(Org.Brotli.Dec.BitReader br) in FillBitWindow() 125 internal static int ReadBits(Org.Brotli.Dec.BitReader br, int n) in ReadBits() 141 internal static void Init(Org.Brotli.Dec.BitReader br, System.IO.Stream input) in Init() 156 private static void Prepare(Org.Brotli.Dec.BitReader br) in Prepare() 164 internal static void Reload(Org.Brotli.Dec.BitReader br) in Reload() 173 internal static void Close(Org.Brotli.Dec.BitReader br) in Close() 183 internal static void JumpToByteBoundary(Org.Brotli.Dec.BitReader br) in JumpToByteBoundary() 196 internal static int IntAvailable(Org.Brotli.Dec.BitReader br) in IntAvailable() [all …]
|
| D | Decode.cs | 45 private static int DecodeVarLenUnsignedByte(Org.Brotli.Dec.BitReader br) in DecodeVarLenUnsignedByte() 62 private static void DecodeMetaBlockLength(Org.Brotli.Dec.BitReader br, Org.Brotli.Dec.State state) in DecodeMetaBlockLength() 115 private static int ReadSymbol(int[] table, int offset, Org.Brotli.Dec.BitReader br) in ReadSymbol() 133 private static int ReadBlockLength(int[] table, int offset, Org.Brotli.Dec.BitReader br) in ReadBlockLength() 180 …engths(int[] codeLengthCodeLengths, int numSymbols, int[] codeLengths, Org.Brotli.Dec.BitReader br) in ReadHuffmanCodeLengths() 252 …static void ReadHuffmanCode(int alphabetSize, int[] table, int offset, Org.Brotli.Dec.BitReader br) in ReadHuffmanCode() 349 …ate static int DecodeContextMap(int contextMapSize, byte[] contextMap, Org.Brotli.Dec.BitReader br) in DecodeContextMap()
|
| /external/webp/src/utils/ |
| D | bit_reader_utils.c | 24 void VP8BitReaderSetBuffer(VP8BitReader* const br, in VP8BitReaderSetBuffer() 34 void VP8InitBitReader(VP8BitReader* const br, in VP8InitBitReader() 47 void VP8RemapBitReader(VP8BitReader* const br, ptrdiff_t offset) { in VP8RemapBitReader() 87 void VP8LoadFinalBytes(VP8BitReader* const br) { in VP8LoadFinalBytes() 105 uint32_t VP8GetValue(VP8BitReader* const br, int bits, const char label[]) { in VP8GetValue() 113 int32_t VP8GetSignedValue(VP8BitReader* const br, int bits, in VP8GetSignedValue() 140 void VP8LInitBitReader(VP8LBitReader* const br, const uint8_t* const start, in VP8LInitBitReader() 164 void VP8LBitReaderSetBuffer(VP8LBitReader* const br, in VP8LBitReaderSetBuffer() 175 static void VP8LSetEndOfStream(VP8LBitReader* const br) { in VP8LSetEndOfStream() 181 static void ShiftBytes(VP8LBitReader* const br) { in ShiftBytes() [all …]
|
| D | bit_reader_inl_utils.h | 58 void VP8LoadNewBytes(VP8BitReader* WEBP_RESTRICT const br) { in VP8LoadNewBytes() 107 static WEBP_INLINE int VP8GetBit(VP8BitReader* WEBP_RESTRICT const br, in VP8GetBit() 140 int VP8GetSigned(VP8BitReader* WEBP_RESTRICT const br, int v, in VP8GetSigned() 159 static WEBP_INLINE int VP8GetBitAlt(VP8BitReader* WEBP_RESTRICT const br, in VP8GetBitAlt()
|
| D | bit_reader_utils.h | 32 #define BT_TRACK(br) BitTrace(br, label) argument 35 #define BT_TRACK(br) argument 164 static WEBP_INLINE uint32_t VP8LPrefetchBits(VP8LBitReader* const br) { in VP8LPrefetchBits() 170 static WEBP_INLINE int VP8LIsEndOfStream(const VP8LBitReader* const br) { in VP8LIsEndOfStream() 179 static WEBP_INLINE void VP8LSetBitPos(VP8LBitReader* const br, int val) { in VP8LSetBitPos() 186 static WEBP_INLINE void VP8LFillBitWindow(VP8LBitReader* const br) { in VP8LFillBitWindow()
|
| /external/curl/lib/ |
| D | bufref.c | 37 void Curl_bufref_init(struct bufref *br) in Curl_bufref_init() 54 void Curl_bufref_free(struct bufref *br) in Curl_bufref_free() 72 void Curl_bufref_set(struct bufref *br, const void *ptr, size_t len, in Curl_bufref_set() 87 const unsigned char *Curl_bufref_ptr(const struct bufref *br) in Curl_bufref_ptr() 99 size_t Curl_bufref_len(const struct bufref *br) in Curl_bufref_len() 108 CURLcode Curl_bufref_memdup(struct bufref *br, const void *ptr, size_t len) in Curl_bufref_memdup()
|
| /external/webrtc/modules/video_coding/utility/ |
| D | vp9_uncompressed_header_parser.cc | 26 void Vp9ReadColorConfig(BitstreamReader& br, in Vp9ReadColorConfig() 73 void ReadRefreshFrameFlags(BitstreamReader& br, in ReadRefreshFrameFlags() 82 void Vp9ReadFrameSize(BitstreamReader& br, Vp9UncompressedHeader* frame_info) { in Vp9ReadFrameSize() 89 BitstreamReader& br, in Vp9ReadRenderSize() 104 void Vp9ReadFrameSizeFromRefs(BitstreamReader& br, in Vp9ReadFrameSizeFromRefs() 117 void Vp9ReadLoopfilter(BitstreamReader& br) { in Vp9ReadLoopfilter() 141 void Vp9ReadQp(BitstreamReader& br, Vp9UncompressedHeader* frame_info) { in Vp9ReadQp() 158 void Vp9ReadSegmentationParams(BitstreamReader& br, in Vp9ReadSegmentationParams() 216 void Vp9ReadTileInfo(BitstreamReader& br, Vp9UncompressedHeader* frame_info) { in Vp9ReadTileInfo() 384 void Parse(BitstreamReader& br, in Parse()
|
| D | vp8_header_parser.cc | 30 void VP8InitBitReader(VP8BitReader* const br, in VP8InitBitReader() 53 int Vp8BitReaderGetBool(VP8BitReader* br, int prob) { in Vp8BitReaderGetBool() 79 uint32_t VP8GetValue(VP8BitReader* br, int num_bits) { in VP8GetValue() 92 int32_t VP8GetSignedValue(VP8BitReader* br, int num_bits) { in VP8GetSignedValue() 98 static void ParseSegmentHeader(VP8BitReader* br) { in ParseSegmentHeader() 130 static void ParseFilterHeader(VP8BitReader* br) { in ParseFilterHeader() 162 VP8BitReader br; in GetQp() local
|
| /external/v4l2_codec2/common/ |
| D | NalParser.cpp | 34 bool parseUE(ABitReader* br, uint32_t* val) { in parseUE() 48 bool parseSE(ABitReader* br, int32_t* val) { in parseSE() 56 bool skipScalingList(ABitReader* br, size_t scalingListSize) { in skipScalingList() 78 bool skipScalingMatrix(ABitReader* br, size_t numScalingLists) { in skipScalingMatrix() 149 ABitReader br(mCurrNalDataPos + 1, length() - 1); in findCodedColorAspects() local
|
| /external/libvpx/vpx_dsp/ |
| D | bitwriter.c | 19 void vpx_start_encode(vpx_writer *br, uint8_t *source) { in vpx_start_encode() 28 void vpx_stop_encode(vpx_writer *br) { in vpx_stop_encode()
|
| /external/python/cryptography/docs/development/custom-vectors/rsa-oaep-sha2/ |
| D | VerifyRSAOAEPSHA2.java | 147 private BigInteger readBigInteger(BufferedReader br) throws IOException { in readBigInteger() 151 private void skipFileHeader(BufferedReader br) throws IOException { in skipFileHeader() 157 private void startNewTest(BufferedReader br) throws IOException { in startNewTest() 163 private void loadPublicKey(BufferedReader br, TestVectorData data) throws IOException { in loadPublicKey() 175 private void loadPrivateKey(BufferedReader br, TestVectorData data) throws IOException { in loadPrivateKey() 217 private void loadMessage(BufferedReader br, TestVectorData data) throws IOException { in loadMessage()
|
| /external/webp/src/dec/ |
| D | tree_dec.c | 289 static void ParseIntraMode(VP8BitReader* const br, in ParseIntraMode() 360 int VP8ParseIntraModeRow(VP8BitReader* const br, VP8Decoder* const dec) { in VP8ParseIntraModeRow() 514 void VP8ParseProba(VP8BitReader* const br, VP8Decoder* const dec) { in VP8ParseProba()
|
| D | vp8_dec.c | 160 static int ParseSegmentHeader(VP8BitReader* br, in ParseSegmentHeader() 203 VP8BitReader* const br = &dec->br_; in ParsePartitions() local 233 static int ParseFilterHeader(VP8BitReader* br, VP8Decoder* const dec) { in ParseFilterHeader() 264 VP8BitReader* br; in VP8GetHeaders() local 407 static int GetLargeValue(VP8BitReader* const br, const uint8_t* const p) { in GetLargeValue() 439 static int GetCoeffsFast(VP8BitReader* const br, in GetCoeffsFast() 469 static int GetCoeffsAlt(VP8BitReader* const br, in GetCoeffsAlt()
|
| /external/libvpx/vp8/decoder/ |
| D | dboolhuff.h | 54 static VPX_NO_UNSIGNED_SHIFT_CHECK int vp8dx_decode_bool(BOOL_DECODER *br, in vp8dx_decode_bool() 93 static INLINE int vp8_decode_value(BOOL_DECODER *br, int bits) { in vp8_decode_value() 104 static INLINE int vp8dx_bool_error(BOOL_DECODER *br) { in vp8dx_bool_error()
|
| D | dboolhuff.c | 15 int vp8dx_start_decode(BOOL_DECODER *br, const unsigned char *source, in vp8dx_start_decode() 38 void vp8dx_bool_decoder_fill(BOOL_DECODER *br) { in vp8dx_bool_decoder_fill()
|
| /external/pffft/simd/ |
| D | pf_float.h | 76 #define VCPLXMUL(ar,ai,br,bi) { v4sf tmp; tmp=VMUL(ar,bi); ar=VMUL(ar,br); ar=VSUB(ar,VMUL(ai,bi));… argument 77 #define VCPLXMULCONJ(ar,ai,br,bi) { v4sf tmp; tmp=VMUL(ar,bi); ar=VMUL(ar,br); ar=VADD(ar,VMUL(ai,b… argument
|
| D | pf_double.h | 76 #define VCPLXMUL(ar,ai,br,bi) { v4sf tmp; tmp=VMUL(ar,bi); ar=VMUL(ar,br); ar=VSUB(ar,VMUL(ai,bi));… argument 77 #define VCPLXMULCONJ(ar,ai,br,bi) { v4sf tmp; tmp=VMUL(ar,bi); ar=VMUL(ar,br); ar=VADD(ar,VMUL(ai,b… argument
|
| /external/mesa3d/src/freedreno/ir3/ |
| D | ir3_ra_regset.c | 44 for (unsigned br = j; br < j + class_sizes[i]; br++) { in setup_conflicts() local 54 for (unsigned br = j; br < j + half_class_sizes[i]; br++) { in setup_conflicts() local 65 for (unsigned br = j; br < j + high_class_sizes[i]; br++) { in setup_conflicts() local
|