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

  /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))
  /system/core/libsparse/
simg_dump.py 130 data_sz = total_sz - 12
136 print("%4u %10u %10u %7u %7u" % (i, curpos, data_sz, offset, chunk_sz),
140 if data_sz != (chunk_sz * blk_sz):
142 % (data_sz, chunk_sz * blk_sz))
146 data = FH.read(data_sz)
152 if data_sz != 4:
154 % (data_sz))
167 if data_sz != 0:
168 print("Don't care chunk input size is non-zero (%u)" % (data_sz))
173 if data_sz != 4
    [all...]
  /external/libvpx/libvpx/test/
decode_api_test.cc 152 for (uint32_t data_sz = 1; data_sz <= 32; ++data_sz) {
155 if (data_sz >= 8) {
159 (data_sz < 10) ? VPX_CODEC_UNSUP_BITSTREAM : VPX_CODEC_CORRUPT_FRAME,
160 vpx_codec_decode(&dec, data, data_sz, NULL, 0));
169 EXPECT_EQ((data_sz < 10) ? VPX_CODEC_UNSUP_BITSTREAM : VPX_CODEC_OK,
170 vpx_codec_peek_stream_info(codec, data, data_sz, &si));
datarate_test.cc     [all...]
  /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;
172 unsigned int data_sz,
    [all...]
vp9_cx_iface.c 1094 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,
  /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 121 unsigned int data_sz,
129 if (data + data_sz <= data) {
141 int n = VPXMIN(sizeof(clear_buffer), data_sz);
147 if (data_sz >= 10 && !(clear[0] & 0x01)) { /* I-Frame */
168 static vpx_codec_err_t vp8_peek_si(const uint8_t *data, unsigned int data_sz,
170 return vp8_peek_si_internal(data, data_sz, si, NULL, NULL);
230 unsigned int data_sz,
239 if (ctx->fragments.enabled && !(data == NULL && data_sz == 0)) {
244 ctx->fragments.sizes[ctx->fragments.count] = data_sz;
254 if (!ctx->fragments.enabled && (data == NULL && data_sz == 0))
    [all...]
  /build/make/tools/releasetools/
sparse_img.py 80 data_sz = total_sz - 12
83 if data_sz != (chunk_sz * blk_sz):
86 (data_sz, chunk_sz * blk_sz))
92 f.seek(data_sz, os.SEEK_CUR)
102 if data_sz != 0:
104 (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/vp9/decoder/
vp9_decoder.c 410 vpx_codec_err_t vp9_parse_superframe_index(const uint8_t *data, size_t data_sz,
422 assert(data_sz);
423 marker = read_marker(decrypt_cb, decrypt_state, data + data_sz - 1);
433 if (data_sz < index_sz) return VPX_CODEC_CORRUPT_FRAME;
437 read_marker(decrypt_cb, decrypt_state, data + data_sz - index_sz);
448 const uint8_t *x = &data[data_sz - index_sz + 1];
vp9_decoder.h 103 vpx_codec_err_t vp9_parse_superframe_index(const uint8_t *data, 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,
  /hardware/intel/common/omx-components/videocodec/
OMXVideoDecoderVP9Hybrid.h 61 bool isReallocateNeeded(const uint8_t *data, uint32_t data_sz);
OMXVideoDecoderVP9Hybrid.cpp 204 bool OMXVideoDecoderVP9Hybrid::isReallocateNeeded(const uint8_t * data,uint32_t data_sz)
210 ret = mGetFrameResolution(data,data_sz, &width, &height);
  /system/extras/sound/
playwav.c 121 uint32_t data_sz; member in struct:wav_header
188 fd, hdr.data_sz);
215 hdr.data_sz = 0;
283 hdr.data_sz = total;
  /external/tinyalsa/
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;
  /external/libvpx/libvpx/examples/
vp9_spatial_svc_encoder.c 511 vpx_codec_err_t parse_superframe_index(const uint8_t *data, size_t data_sz,
521 marker = *(data + data_sz - 1);
531 if (data_sz < index_sz) return VPX_CODEC_CORRUPT_FRAME;
534 const uint8_t marker2 = *(data + data_sz - index_sz);
545 const uint8_t *x = &data[data_sz - index_sz + 1];
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_state.h 228 GLuint data_sz,
  /external/avb/
avbtool 711 data_sz = total_sz - struct.calcsize(ImageChunk.FORMAT)
714 if data_sz != (chunk_sz * self.block_size):
717 format(data_sz, chunk_sz*self.block_size))
724 self._image.read(data_sz)
727 if data_sz != 4:
729 'has {}'.format(data_sz))
738 if data_sz != 0:
740 format(data_sz))
748 if data_sz != 4:
750 'this has {}'.format(data_sz))
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
decodeframe.c 874 const unsigned int data_sz = pbi->fragments.sizes[0]; local
875 const unsigned char *data_end = data + data_sz;
906 int n = (int)VPXMIN(sizeof(clear_buffer), data_sz);
    [all...]

Completed in 1759 milliseconds