Searched refs:length_size (Results 1 - 16 of 16) sorted by relevance

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/ffmpeg/libavcodec/
H A Dh264_mp4toannexb_bsf.c26 uint8_t length_size; member in struct:H264BSFContext
78 ctx->length_size = (*extradata++ & 0x3) + 1;
79 if (ctx->length_size == 3)
114 if (buf + ctx->length_size > buf_end)
117 if (ctx->length_size == 1)
119 else if (ctx->length_size == 2)
124 buf += ctx->length_size;
146 cumul_size += nal_size + ctx->length_size;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/ffmpeg/libavcodec/
H A Dh264_mp4toannexb_bsf.c26 uint8_t length_size; member in struct:H264BSFContext
78 ctx->length_size = (*extradata++ & 0x3) + 1;
79 if (ctx->length_size == 3)
114 if (buf + ctx->length_size > buf_end)
117 if (ctx->length_size == 1)
119 else if (ctx->length_size == 2)
124 buf += ctx->length_size;
146 cumul_size += nal_size + ctx->length_size;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/ffmpeg/libavcodec/
H A Dh264_mp4toannexb_bsf.c26 uint8_t length_size; member in struct:H264BSFContext
78 ctx->length_size = (*extradata++ & 0x3) + 1;
79 if (ctx->length_size == 3)
114 if (buf + ctx->length_size > buf_end)
117 if (ctx->length_size == 1)
119 else if (ctx->length_size == 2)
124 buf += ctx->length_size;
146 cumul_size += nal_size + ctx->length_size;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/gdb/
H A Dp-lang.c43 length_pos, length_size and string_pos are given in bytes.
50 int *length_size, int *string_pos, int *char_size,
63 if (length_size)
64 *length_size = TYPE_LENGTH (TYPE_FIELD_TYPE (type, 0));
81 if (length_size)
82 *length_size = TYPE_LENGTH (TYPE_FIELD_TYPE (type, 1));
49 is_pascal_string_type(struct type *type,int *length_pos, int *length_size, int *string_pos, int *char_size, char **arrayname) argument
H A Dp-valprint.c70 int length_pos, length_size, string_pos;
186 if (is_pascal_string_type (elttype, &length_pos, &length_size,
192 buffer = xmalloc (length_size);
193 read_memory (addr + length_pos, buffer, length_size);
194 string_length = extract_unsigned_integer (buffer, length_size);
301 if (is_pascal_string_type (type, &length_pos, &length_size,
304 len = extract_unsigned_integer (valaddr + embedded_offset + length_pos, length_size);
69 int length_pos, length_size, string_pos; local
H A Dm2-valprint.c258 int length_pos, length_size, string_pos; local
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/gdb/
H A Dp-lang.c43 length_pos, length_size and string_pos are given in bytes.
50 int *length_size, int *string_pos, int *char_size,
63 if (length_size)
64 *length_size = TYPE_LENGTH (TYPE_FIELD_TYPE (type, 0));
81 if (length_size)
82 *length_size = TYPE_LENGTH (TYPE_FIELD_TYPE (type, 1));
49 is_pascal_string_type(struct type *type,int *length_pos, int *length_size, int *string_pos, int *char_size, char **arrayname) argument
H A Dp-valprint.c70 int length_pos, length_size, string_pos;
186 if (is_pascal_string_type (elttype, &length_pos, &length_size,
192 buffer = xmalloc (length_size);
193 read_memory (addr + length_pos, buffer, length_size);
194 string_length = extract_unsigned_integer (buffer, length_size);
301 if (is_pascal_string_type (type, &length_pos, &length_size,
304 len = extract_unsigned_integer (valaddr + embedded_offset + length_pos, length_size);
69 int length_pos, length_size, string_pos; local
H A Dm2-valprint.c258 int length_pos, length_size, string_pos; local
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/gdb/
H A Dp-lang.c43 length_pos, length_size and string_pos are given in bytes.
50 int *length_size, int *string_pos, int *char_size,
63 if (length_size)
64 *length_size = TYPE_LENGTH (TYPE_FIELD_TYPE (type, 0));
81 if (length_size)
82 *length_size = TYPE_LENGTH (TYPE_FIELD_TYPE (type, 1));
49 is_pascal_string_type(struct type *type,int *length_pos, int *length_size, int *string_pos, int *char_size, char **arrayname) argument
H A Dp-valprint.c70 int length_pos, length_size, string_pos;
186 if (is_pascal_string_type (elttype, &length_pos, &length_size,
192 buffer = xmalloc (length_size);
193 read_memory (addr + length_pos, buffer, length_size);
194 string_length = extract_unsigned_integer (buffer, length_size);
301 if (is_pascal_string_type (type, &length_pos, &length_size,
304 len = extract_unsigned_integer (valaddr + embedded_offset + length_pos, length_size);
69 int length_pos, length_size, string_pos; local
H A Dm2-valprint.c258 int length_pos, length_size, string_pos; local
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/fs/ecryptfs/
H A Dkeystore.c73 * @length_size: The number of bytes occupied by the encoded length
78 size_t *length_size)
82 (*length_size) = 0;
87 (*length_size) = 1;
92 (*length_size) = 2;
1127 size_t length_size; local
1168 &length_size);
1179 (*packet_size) += length_size;
1259 size_t length_size; local
1302 &length_size);
77 ecryptfs_parse_packet_length(unsigned char *data, size_t *size, size_t *length_size) argument
1431 size_t length_size; local
[all...]
H A Decryptfs_kernel.h746 size_t *length_size);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/fs/ecryptfs/
H A Dkeystore.c73 * @length_size: The number of bytes occupied by the encoded length
78 size_t *length_size)
82 (*length_size) = 0;
87 (*length_size) = 1;
92 (*length_size) = 2;
1127 size_t length_size; local
1168 &length_size);
1179 (*packet_size) += length_size;
1259 size_t length_size; local
1302 &length_size);
77 ecryptfs_parse_packet_length(unsigned char *data, size_t *size, size_t *length_size) argument
1431 size_t length_size; local
[all...]
H A Decryptfs_kernel.h746 size_t *length_size);

Completed in 288 milliseconds