HomeSort by relevance Sort by last modified time
    Searched refs:data_sz (Results 1 - 25 of 28) sorted by null

1 2

  /external/qemu/distrib/libsparse/src/
simg_dump.py 103 data_sz = total_sz - 12
105 print("%4u %10u %10u %7u %7u" % (i, FH.tell(), data_sz, offset, chunk_sz),
109 if data_sz != (chunk_sz * blk_sz):
111 % (data_sz, chunk_sz * blk_sz))
115 FH.read(data_sz)
117 if data_sz != 4:
119 % (data_sz), end="")
126 if data_sz != 0:
127 print("Don't care chunk input size is non-zero (%u)" % (data_sz))
132 if data_sz != 4
    [all...]
  /system/core/libsparse/
simg_dump.py 103 data_sz = total_sz - 12
105 print("%4u %10u %10u %7u %7u" % (i, FH.tell(), data_sz, offset, chunk_sz),
109 if data_sz != (chunk_sz * blk_sz):
111 % (data_sz, chunk_sz * blk_sz))
115 FH.read(data_sz)
117 if data_sz != 4:
119 % (data_sz), end="")
126 if data_sz != 0:
127 print("Don't care chunk input size is non-zero (%u)" % (data_sz))
132 if data_sz != 4
    [all...]
  /external/libvpx/libvpx/vp9/
vp9_dx_iface.c 98 unsigned int data_sz,
100 if (data_sz <= 8)
103 if (data + data_sz <= data)
110 struct vp9_read_bit_buffer rb = { data, data + data_sz, 0, NULL, NULL };
253 const uint8_t **data, unsigned int data_sz,
267 ctx->base.iface->dec.peek_si(*data, data_sz, &ctx->si);
283 if (vp9_receive_compressed_data(ctx->pbi, data_sz, data, deadline))
299 static void parse_superframe_index(const uint8_t *data, size_t data_sz,
303 assert(data_sz);
304 marker = data[data_sz - 1]
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
vp9_dx_iface.c 88 static vpx_codec_err_t vp9_peek_si(const uint8_t *data, unsigned int data_sz,
90 if (data_sz <= 8) return VPX_CODEC_UNSUP_BITSTREAM;
91 if (data + data_sz <= data) return VPX_CODEC_INVALID_PARAM;
97 struct vp9_read_bit_buffer rb = { data, data + data_sz, 0, NULL, NULL };
170 const uint8_t **data, unsigned int data_sz,
180 res = ctx->base.iface->dec.peek_si(*data, data_sz, &ctx->si);
261 if (vp9_receive_compressed_data(pbi, data_sz, data, deadline))
276 static void parse_superframe_index(const uint8_t *data, size_t data_sz,
280 assert(data_sz);
281 marker = data[data_sz - 1]
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx/
vpx_decoder.h 158 * \param[in] data_sz Size of the data buffer
169 unsigned int data_sz,
198 * data and data_sz can contain a fragment of the encoded frame. Fragment
202 * with NULL as data and 0 as data_sz. The memory passed to this function
209 * \param[in] data_sz Size of the coded data, in bytes.
222 unsigned int data_sz,
  /external/libvpx/libvpx/vpx/
vpx_decoder.h 162 * \param[in] data_sz Size of the data buffer
173 unsigned int data_sz,
202 * data and data_sz can contain a fragment of the encoded frame. Fragment
206 * with NULL as data and 0 as data_sz. The memory passed to this function
213 * \param[in] data_sz Size of the coded data, in bytes.
226 unsigned int data_sz,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
vpx_decoder.h 162 * \param[in] data_sz Size of the data buffer
173 unsigned int data_sz,
202 * data and data_sz can contain a fragment of the encoded frame. Fragment
206 * with NULL as data and 0 as data_sz. The memory passed to this function
213 * \param[in] data_sz Size of the coded data, in bytes.
226 unsigned int data_sz,
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx/src/
vpx_decoder.c 69 unsigned int data_sz,
73 if (!iface || !data || !data_sz || !si
81 res = iface->dec.peek_si(data, data_sz, si);
110 unsigned int data_sz,
116 /* NULL data ptr allowed if data_sz is 0 too */
117 if (!ctx || (!data && data_sz) || (data && !data_sz))
122 res = ctx->iface->dec.decode(get_alg_priv(ctx), data, data_sz, user_priv,
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/
vp9_dx_iface.c 119 unsigned int data_sz,
127 if (data + data_sz <= data)
134 data_sz = MIN(sizeof(clear_buffer), data_sz);
135 decrypt_cb(decrypt_state, data, clear_buffer, data_sz);
142 struct vp9_read_bit_buffer rb = { data, data + data_sz, 0, NULL, NULL };
156 if (data_sz <= 8)
193 unsigned int data_sz,
195 return decoder_peek_si_internal(data, data_sz, si, NULL, NULL, NULL);
272 const uint8_t **data, unsigned int data_sz,
    [all...]
  /build/tools/releasetools/
sparse_img.py 70 data_sz = total_sz - 12
73 if data_sz != (chunk_sz * blk_sz):
76 (data_sz, chunk_sz * blk_sz))
82 f.seek(data_sz, os.SEEK_CUR)
92 if data_sz != 0:
94 (data_sz))
  /external/libvpx/libvpx/vpx/src/
vpx_decoder.c 74 unsigned int data_sz,
78 if (!iface || !data || !data_sz || !si
86 res = iface->dec.peek_si(data, data_sz, si);
115 unsigned int data_sz,
121 /* NULL data ptr allowed if data_sz is 0 too */
122 if (!ctx || (!data && data_sz))
127 res = ctx->iface->dec.decode(ctx->priv->alg_priv, data, data_sz,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
vpx_decoder.c 78 unsigned int data_sz,
82 if (!iface || !data || !data_sz || !si
90 res = iface->dec.peek_si(data, data_sz, si);
119 unsigned int data_sz,
125 /* NULL data ptr allowed if data_sz is 0 too */
126 if (!ctx || (!data && data_sz))
131 res = ctx->iface->dec.decode(ctx->priv->alg_priv, data, data_sz,
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/
vp8_dx_iface.c 161 unsigned int data_sz,
168 if(data + data_sz <= data)
184 int n = MIN(sizeof(clear_buffer), data_sz);
190 if (data_sz >= 10 && !(clear[0] & 0x01)) /* I-Frame */
215 unsigned int data_sz,
217 return vp8_peek_si_internal(data, data_sz, si, NULL, NULL);
286 unsigned int data_sz,
297 if (ctx->fragments.enabled && !(data == NULL && data_sz == 0))
303 ctx->fragments.sizes[ctx->fragments.count] = data_sz;
317 ctx->fragments.sizes[0] = data_sz;
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
vp9_decoder.c 321 size_t data_sz,
333 assert(data_sz);
334 marker = read_marker(decrypt_cb, decrypt_state, data + data_sz - 1);
344 if (data_sz < index_sz)
349 data + data_sz - index_sz);
361 const uint8_t *x = &data[data_sz - index_sz + 1];
vp9_decoder.h 96 size_t data_sz,
  /hardware/qcom/audio/legacy/libalsa-intf/
arec.c 84 uint32_t data_sz; member in struct:wav_header
267 hdr.data_sz = 0;
335 hdr.data_sz += bufsize;
336 hdr.riff_sz = hdr.data_sz + 44 - 8;
365 hdr.data_sz += bufsize;
366 hdr.riff_sz = hdr.data_sz + 44 - 8;
380 return hdr.data_sz;
454 hdr.data_sz = 0;
462 hdr.riff_sz = hdr.data_sz + 44 - 8;
492 hdr.riff_sz = hdr.data_sz + 44 - 8
    [all...]
aplay.c 80 uint32_t data_sz; member in struct:wav_header
165 unsigned flags, const char *device, unsigned data_sz)
258 remainingData = data_sz;
338 if (data_sz && !piped) {
351 if (data_sz && !piped) {
443 if (data_sz && !piped) {
457 if (data_sz && !piped) {
518 hdr.data_sz = 0;
546 hdr.data_sz = 0;
556 return play_file(hdr.sample_rate, hdr.num_channels, fd, flag, device, hdr.data_sz);
    [all...]
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 192 unsigned int data_sz,
199 if(data + data_sz <= data)
215 int n = data_sz > 10 ? 10 : data_sz;
221 if (data_sz >= 10 && !(clear[0] & 0x01)) /* I-Frame */
246 unsigned int data_sz,
248 return vp8_peek_si_internal(data, data_sz, si, NULL, NULL);
316 unsigned int data_sz,
327 if (ctx->fragments.enabled && !(data == NULL && data_sz == 0))
333 ctx->fragments.sizes[ctx->fragments.count] = data_sz;
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
vp8_dx_iface.c 194 unsigned int data_sz,
201 if(data + data_sz <= data)
217 int n = data_sz > 10 ? 10 : data_sz;
223 if (data_sz >= 10 && !(clear[0] & 0x01)) /* I-Frame */
248 unsigned int data_sz,
250 return vp8_peek_si_internal(data, data_sz, si, NULL, NULL);
318 unsigned int data_sz,
329 if (ctx->fragments.enabled && !(data == NULL && data_sz == 0))
335 ctx->fragments.sizes[ctx->fragments.count] = data_sz;
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx/internal/
vpx_codec_internal.h 106 * \param[in] data_sz Size of the data buffer
116 unsigned int data_sz,
189 * \param[in] data_sz Size of the coded data, in bytes.
198 unsigned int data_sz,
  /hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderVP9Hybrid.h 61 bool isReallocateNeeded(const uint8_t *data, uint32_t data_sz);
  /system/extras/sound/
playwav.c 118 uint32_t data_sz; member in struct:wav_header
186 fd, hdr.data_sz);
213 hdr.data_sz = 0;
281 hdr.data_sz = total;
  /external/tinyalsa/
tinycap.c 56 uint32_t data_sz; member in struct:wav_header
173 header.data_sz = frames * header.block_align;
174 header.riff_sz = header.data_sz + sizeof(header) - 8;
  /external/libvpx/libvpx/vpx/internal/
vpx_codec_internal.h 106 * \param[in] data_sz Size of the data buffer
116 unsigned int data_sz,
190 * \param[in] data_sz Size of the coded data, in bytes.
199 unsigned int data_sz,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/internal/
vpx_codec_internal.h 106 * \param[in] data_sz Size of the data buffer
116 unsigned int data_sz,
190 * \param[in] data_sz Size of the coded data, in bytes.
199 unsigned int data_sz,

Completed in 1584 milliseconds

1 2