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

1 2

  /device/google/contexthub/firmware/os/platform/stm32/misc/
showsizes.sh 22 data_sz=$(($data_end-$data_start))
36 printf " DATA SIZE: %6d bytes\n" $data_sz
41 flash_use=$(($code_sz+$data_sz))
42 ram_use=$(($heap_sz+$bss_sz+$data_sz+$stack_sz))
  /external/libvpx/libvpx/test/
decode_api_test.cc 141 void TestPeekInfo(const uint8_t *const data, uint32_t data_sz,
146 if (data_sz >= 8) {
149 EXPECT_EQ((data_sz < peek_size) ? VPX_CODEC_UNSUP_BITSTREAM
151 vpx_codec_decode(&dec, data, data_sz, NULL, 0));
160 EXPECT_EQ((data_sz < peek_size) ? VPX_CODEC_UNSUP_BITSTREAM : VPX_CODEC_OK,
161 vpx_codec_peek_stream_info(codec, data, data_sz, &si));
174 for (uint32_t data_sz = 1; data_sz <= 32; ++data_sz) {
175 TestPeekInfo(data, data_sz, 10)
    [all...]
svc_datarate_test.cc 362 vpx_codec_err_t parse_superframe_index(const uint8_t *data, size_t data_sz,
365 marker = *(data + data_sz - 1);
373 if (data_sz < index_sz) return VPX_CODEC_CORRUPT_FRAME;
375 const uint8_t marker2 = *(data + data_sz - index_sz);
383 const uint8_t *x = &data[data_sz - index_sz + 1];
    [all...]
  /external/libaom/libaom/aom/
aom_decoder.h 146 * \param[in] data_sz Size of the data buffer
160 const uint8_t *data, size_t data_sz,
192 * \param[in] data_sz Size of the coded data, in bytes.
202 size_t data_sz, void *user_priv);
  /external/libvpx/libvpx/vpx/
vpx_decoder.h 155 * \param[in] data_sz Size of the data buffer
166 unsigned int data_sz,
193 * data and data_sz can contain a fragment of the encoded frame. Fragment
197 * with NULL as data and 0 as data_sz. The memory passed to this function
204 * \param[in] data_sz Size of the coded data, in bytes.
216 unsigned int data_sz, void *user_priv,
  /external/libvpx/libvpx/vp9/
vp9_dx_iface.c 97 const uint8_t *data, unsigned int data_sz, vpx_codec_stream_info_t *si,
102 if (data + data_sz <= data) return VPX_CODEC_INVALID_PARAM;
108 data_sz = VPXMIN(sizeof(clear_buffer), data_sz);
109 decrypt_cb(decrypt_state, data, clear_buffer, data_sz);
115 if (data_sz < 1) return VPX_CODEC_UNSUP_BITSTREAM;
120 struct vpx_read_bit_buffer rb = { data, data + data_sz, 0, NULL, NULL };
131 if (profile > 2 && data_sz < 2) return VPX_CODEC_UNSUP_BITSTREAM;
139 if (data_sz < 10) return VPX_CODEC_UNSUP_BITSTREAM;
163 if (data_sz < 11) return VPX_CODEC_UNSUP_BITSTREAM
    [all...]
vp9_cx_iface.c 1082 size_t data_sz; local
    [all...]
  /external/libvpx/libvpx/vpx/src/
vpx_decoder.c 67 unsigned int data_sz,
71 if (!iface || !data || !data_sz || !si ||
79 res = iface->dec.peek_si(data, data_sz, si);
105 unsigned int data_sz, void *user_priv,
110 /* NULL data ptr allowed if data_sz is 0 too */
111 if (!ctx || (!data && data_sz) || (data && !data_sz))
116 res = ctx->iface->dec.decode(get_alg_priv(ctx), data, data_sz, user_priv,
  /external/tinyalsa/
tinyplay.c 66 unsigned int period_count, uint32_t data_sz);
215 unsigned int period_count, uint32_t data_sz)
258 printf("Playing sample: %u ch, %u hz, %u bit %u bytes\n", channels, rate, bits, data_sz);
264 read_sz = size < data_sz ? size : data_sz;
271 data_sz -= num_read;
273 } while (!close && num_read > 0 && data_sz > 0);
tinycap.c 57 uint32_t data_sz; member in struct:wav_header
183 header.data_sz = frames * header.block_align;
184 header.riff_sz = header.data_sz + sizeof(header) - 8;
  /bionic/libc/kernel/uapi/linux/
am437x-vpfe.h 74 enum vpfe_ccdc_data_size data_sz; member in struct:vpfe_ccdc_config_params_raw
  /external/kernel-headers/original/uapi/linux/
am437x-vpfe.h 107 enum vpfe_ccdc_data_size data_sz; member in struct:vpfe_ccdc_config_params_raw
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 127 unsigned int data_sz,
135 if (data + data_sz <= data) {
147 int n = VPXMIN(sizeof(clear_buffer), data_sz);
153 if (data_sz >= 10 && !(clear[0] & 0x01)) { /* I-Frame */
174 static vpx_codec_err_t vp8_peek_si(const uint8_t *data, unsigned int data_sz,
176 return vp8_peek_si_internal(data, data_sz, si, NULL, NULL);
236 unsigned int data_sz,
245 if (ctx->fragments.enabled && !(data == NULL && data_sz == 0)) {
250 ctx->fragments.sizes[ctx->fragments.count] = data_sz;
260 if (!ctx->fragments.enabled && (data == NULL && data_sz == 0))
    [all...]
  /external/libaom/libaom/aom/src/
aom_decoder.c 61 const uint8_t *data, size_t data_sz,
65 if (!iface || !data || !data_sz || !si) {
72 res = iface->dec.peek_si(data, data_sz, si);
98 size_t data_sz, void *user_priv) {
106 res = ctx->iface->dec.decode(get_alg_priv(ctx), data, data_sz, user_priv);
  /external/libaom/libaom/av1/
av1_dx_iface.c 259 size_t data_sz,
266 if (data + data_sz <= data || data_sz < 1) return AOM_CODEC_INVALID_PARAM;
278 data, data_sz, si->is_annexb, &obu_header, &payload_size, &bytes_read);
285 if (data_sz < bytes_read + payload_size) return AOM_CODEC_CORRUPT_FRAME;
287 data_sz -= bytes_read + payload_size;
290 data, data_sz, si->is_annexb, &obu_header, &payload_size, &bytes_read);
295 data_sz -= bytes_read;
296 if (data_sz < payload_size) return AOM_CODEC_CORRUPT_FRAME;
300 if (data_sz < 2) return AOM_CODEC_CORRUPT_FRAME
    [all...]
  /build/make/tools/releasetools/
sparse_img.py 92 data_sz = total_sz - 12
95 if data_sz != (chunk_sz * blk_sz):
98 (data_sz, chunk_sz * blk_sz))
104 f.seek(data_sz, os.SEEK_CUR)
114 if data_sz != 0:
116 (data_sz))
  /external/libvpx/libvpx/vp9/decoder/
vp9_decoder.c 462 vpx_codec_err_t vp9_parse_superframe_index(const uint8_t *data, size_t data_sz,
474 assert(data_sz);
475 marker = read_marker(decrypt_cb, decrypt_state, data + data_sz - 1);
485 if (data_sz < index_sz) return VPX_CODEC_CORRUPT_FRAME;
489 read_marker(decrypt_cb, decrypt_state, data + data_sz - index_sz);
500 const uint8_t *x = &data[data_sz - index_sz + 1];
vp9_decoder.h 121 vpx_codec_err_t vp9_parse_superframe_index(const uint8_t *data, size_t data_sz,
  /external/libaom/libaom/aom/internal/
aom_codec_internal.h 106 * \param[in] data_sz Size of the data buffer
115 size_t data_sz,
185 * \param[in] data_sz Size of the coded data, in bytes.
194 size_t data_sz,
  /external/libvpx/libvpx/vpx/internal/
vpx_codec_internal.h 105 * \param[in] data_sz Size of the data buffer
115 unsigned int data_sz,
188 * \param[in] data_sz Size of the coded data, in bytes.
197 unsigned int data_sz,
  /external/libaom/libaom/examples/
lightfield_bitstream_parsing.c 344 const size_t data_sz = MAX_TILES * ALIGN_POWER_OF_TWO(tile_width, 5) * local
347 unsigned char *tl_buf = (unsigned char *)malloc(data_sz);
  /external/libvpx/libvpx/examples/
vp9_spatial_svc_encoder.c 543 size_t data_sz, uint64_t sizes[8],
553 marker = *(data + data_sz - 1);
563 if (data_sz < index_sz) return VPX_CODEC_CORRUPT_FRAME;
566 const uint8_t marker2 = *(data + data_sz - index_sz);
577 const uint8_t *x = &data[data_sz - index_sz + 1];
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_state.h 165 GLuint data_sz,
  /external/avb/
avbtool 750 data_sz = total_sz - struct.calcsize(ImageChunk.FORMAT)
753 if data_sz != (chunk_sz * self.block_size):
756 format(data_sz, chunk_sz*self.block_size))
763 self._image.seek(data_sz, os.SEEK_CUR)
766 if data_sz != 4:
768 'has {}'.format(data_sz))
777 if data_sz != 0:
779 format(data_sz))
787 if data_sz != 4:
789 'this has {}'.format(data_sz))
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
decodeframe.c 886 const unsigned int data_sz = pbi->fragments.sizes[0]; local
887 const unsigned char *data_end = data + data_sz;
918 int n = (int)VPXMIN(sizeof(clear_buffer), data_sz);
    [all...]

Completed in 1109 milliseconds

1 2