OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:encoded_bytes
(Results
1 - 2
of
2
) sorted by null
/bootable/recovery/minelf/
Retouch.c
47
static void decode_bytes(uint8_t *
encoded_bytes
, int encoded_size,
50
*dst_offset = offs_prev + (((
encoded_bytes
[0]&0x60)>>5)+1)*4;
53
int32_t tmp = (((
encoded_bytes
[0] & 0x0000001f) << 8) |
54
encoded_bytes
[1]);
58
*dst_offset = offs_prev + (((
encoded_bytes
[0]&0x30)>>4)+1)*4;
61
int32_t tmp = (((
encoded_bytes
[0] & 0x0000000f) << 16) |
62
(
encoded_bytes
[1] << 8) |
63
encoded_bytes
[2]);
68
(
encoded_bytes
[0]<<24) |
69
(
encoded_bytes
[1]<<16)
[
all
...]
/external/flac/libFLAC/
stream_encoder.c
4173
const size_t
encoded_bytes
= encoder->private_->verify.output.bytes;
local
[
all
...]
Completed in 98 milliseconds