/third_party/ffmpeg/libavcodec/ |
H A D | fraps.c | 91 int h, const uint8_t *src, int size, int Uoff, in fraps2_decode_plane() 101 size -= 1024; in fraps2_decode_plane() 110 (const uint32_t *) src, size >> 2); in fraps2_decode_plane() 112 if ((ret = init_get_bits8(&gb, s->tmpbuf, size)) < 0) in fraps2_decode_plane() 141 int buf_size = avpkt->size; in decode_frame() 235 av_log(avctx, AV_LOG_ERROR, "Invalid frame size %dx%d\n", in decode_frame() 90 fraps2_decode_plane(FrapsContext *s, uint8_t *dst, int stride, int w, int h, const uint8_t *src, int size, int Uoff, const int step) fraps2_decode_plane() argument
|
H A D | libaribb24.c | 106 "%s,%d," /* Font{name,size} */ in libaribb24_generate_ass_header() 250 // font size in libaribb24_handle_regions() 297 if (pkt->size <= 0) in libaribb24_decode() 298 return pkt->size; in libaribb24_decode() 300 arib_parse_pes(b24->parser, pkt->data, pkt->size); in libaribb24_decode() 308 return pkt->size; in libaribb24_decode() 337 "Result: '%s' (size: %zu, pkt_pts: %"PRId64", sub_pts: %"PRId64" " in libaribb24_decode() 357 return ret < 0 ? ret : pkt->size; in libaribb24_decode()
|
H A D | get_buffer.c | 38 * Pools for each data plane. For audio all the planes have the same size, 124 size_t size[4]; in update_frame_pool() local 144 ret = av_image_fill_plane_sizes(size, avctx->pix_fmt, h, linesize1); in update_frame_pool() 150 if (size[i]) { in update_frame_pool() 151 if (size[i] > INT_MAX - (16 + STRIDE_ALIGN - 1)) { in update_frame_pool() 155 pool->pools[i] = av_buffer_pool_init(size[i] + 16 + STRIDE_ALIGN - 1, in update_frame_pool()
|
H A D | iirfilter.c | 229 for (i = 0; i < size; i += 4) { \ 242 for (i = 0; i < size; i++) { \ 264 for (i = 0; i < size; i++) { \ 277 struct FFIIRFilterState *s, int size, in ff_iir_filter() 295 * @param size input length 302 struct FFIIRFilterState *s, int size, in iir_filter_flt() 276 ff_iir_filter(const struct FFIIRFilterCoeffs *c, struct FFIIRFilterState *s, int size, const int16_t *src, ptrdiff_t sstep, int16_t *dst, ptrdiff_t dstep) ff_iir_filter() argument 301 iir_filter_flt(const struct FFIIRFilterCoeffs *c, struct FFIIRFilterState *s, int size, const float *src, ptrdiff_t sstep, float *dst, ptrdiff_t dstep) iir_filter_flt() argument
|
H A D | imm5.c | 93 if (avpkt->size > 24 && avpkt->data[8] <= 1 && AV_RL32(avpkt->data + 4) + 24ULL <= avpkt->size) { in imm5_decode_frame() 121 avpkt->size = new_size + offset; in imm5_decode_frame() 131 avpkt->size -= 24; in imm5_decode_frame() 159 return avpkt->size; in imm5_decode_frame()
|
H A D | msvideo1.c | 42 if ((stream_ptr + n) > s->size ) { \ 44 stream_ptr + n, s->size); \ 54 int size; member 301 int buf_size = avpkt->size; in msvideo1_decode_frame() 306 s->size = buf_size; in msvideo1_decode_frame() 308 // Discard frame if its smaller than the minimum frame size in msvideo1_decode_frame()
|
/third_party/ffmpeg/libavcodec/arm/ |
H A D | vp9dsp_init_arm.c | 188 #define define_loop_filter(dir, wd, size) \ 189 void ff_vp9_loop_filter_##dir##_##wd##_##size##_neon(uint8_t *dst, ptrdiff_t stride, int E, int I, int H) 191 #define define_loop_filters(wd, size) \ 192 define_loop_filter(h, wd, size); \ 193 define_loop_filter(v, wd, size)
|
/third_party/ffmpeg/fftools/ |
H A D | ffmpeg_mux.c | 73 (ost->muxing_queue_data_size + pkt->size) > ost->muxing_queue_data_threshold; in of_write_packet() 94 ost->muxing_queue_data_size += tmp_pkt->size; in of_write_packet() 152 ost->data_size += pkt->size; in of_write_packet() 159 "pkt_pts:%s pkt_pts_time:%s pkt_dts:%s pkt_dts_time:%s duration:%s duration_time:%s size:%d\n", in of_write_packet() 164 pkt->size in of_write_packet() 272 ost->muxing_queue_data_size -= pkt->size; in of_check_init()
|
/third_party/eudev/src/udev/ |
H A D | udev-builtin-usb_id.c | 151 ssize_t size; in dev_if_packed_info() local 174 size = read(fd, buf, sizeof(buf)); in dev_if_packed_info() 175 if (size < 18 || size == sizeof(buf)) in dev_if_packed_info() 179 while (pos + sizeof(struct usb_interface_descriptor) < (size_t) size && in dev_if_packed_info()
|
/third_party/ffmpeg/libavdevice/ |
H A D | libdc1394.c | 43 char *video_size; /**< String describing video size, set by a private option. */ 47 int size; member 82 { "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(video_size), AV_OPT_TYPE_STRING, {.str = "qvga"}, 0, 0, DEC }, 116 av_log(c, AV_LOG_ERROR, "Could not parse video size '%s'.\n", dc1394->video_size); in dc1394_read_common() 156 dc1394->size = av_image_get_buffer_size(fmt->pix_fmt, in dc1394_read_common() 159 vst->codecpar->bit_rate = av_rescale(dc1394->size * 8, in dc1394_read_common() 267 pkt->size = dc1394->frame->image_bytes; in dc1394_read_packet() 276 return pkt->size; in dc1394_read_packet()
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_ashowinfo.c | 65 if (sd->size < sizeof(enum AVMatrixEncoding)) { in dump_matrixenc() 88 if (sd->size < sizeof(*di)) { in dump_downmix() 135 if (sd->size < sizeof(*rg)) { in dump_replaygain() 152 if (sd->size < sizeof(*ast)) { in dump_audio_service_type() 173 av_log(ctx, AV_LOG_INFO, "unknown side data type: %d, size " in dump_unknown() 174 "%"SIZE_SPECIFIER" bytes", sd->type, sd->size); in dump_unknown()
|
/third_party/ffmpeg/libavformat/ |
H A D | libsmbclient.c | 158 static int libsmbc_read(URLContext *h, unsigned char *buf, int size) in libsmbc_read() argument 163 if ((bytes_read = smbc_read(libsmbc->fd, buf, size)) < 0) { in libsmbc_read() 172 static int libsmbc_write(URLContext *h, const unsigned char *buf, int size) in libsmbc_write() argument 177 if ((bytes_written = smbc_write(libsmbc->fd, buf, size)) < 0) { in libsmbc_write() 267 entry->size = st.st_size; in libsmbc_read_dir()
|
H A D | apngenc.c | 154 existing_fcTL_chunk = apng_find_chunk(MKBETAG('f', 'c', 'T', 'L'), apng->prev_packet->data, apng->prev_packet->size); in flush_packet() 158 avio_write(io_context, chunk_after_fcTL, apng->prev_packet->data + apng->prev_packet->size - chunk_after_fcTL); in flush_packet() 160 avio_write(io_context, apng->prev_packet->data, apng->prev_packet->size); in flush_packet() 184 data_end = data + apng->prev_packet->size; in flush_packet() 185 existing_fcTL_chunk = apng_find_chunk(MKBETAG('f', 'c', 'T', 'L'), apng->prev_packet->data, apng->prev_packet->size); in flush_packet()
|
/third_party/gn/src/gn/ |
H A D | command_path.cc | 69 for (size_t i = 1; i < path.size(); i++) { in ClassifyPath() 106 for (size_t i = 0; i < path.size(); i++) { in PrintPath() 110 if (i == path.size() - 1) { in PrintPath() 148 for (size_t i = 1; i < path.size(); i++) { in InsertTargetsIntoFoundPaths() 313 if (args.size() != 3) { in RunPath()
|
/third_party/alsa-lib/src/pcm/ |
H A D | pcm_direct.h | 33 typedef void (mix_areas_t)(unsigned int size, 38 typedef void (mix_areas_16_t)(unsigned int size, 43 typedef void (mix_areas_32_t)(unsigned int size, 48 typedef void (mix_areas_24_t)(unsigned int size, 53 typedef void (mix_areas_u8_t)(unsigned int size, 169 int max_periods; /* max periods (-1 = fixed periods, 0 = max buffer size) */ 170 int var_periodsize; /* allow variable period size if max_periods is != -1*/
|
/third_party/backends/backend/ |
H A D | artec_eplus48u.h | 397 * @param size Size of the data block in bytes. 405 * @a size must be a multiple of 64 (at least with TV9693), otherwise the 410 SANE_Word size, SANE_Byte * data); 416 * @param size Size of the data block in bytes. 424 * @a size must be a multiple of 64 (at least with TV9693), otherwise the 429 SANE_Word size, SANE_Byte * data); 463 * @param size Pointer to the variable which must be set to the requested data 464 * size before call. After completion this variable will hold the number of 473 size_t * size); 484 size_t * size); [all...] |
H A D | pieusb_scancmd.h | 68 SANE_Int maxScanWidth; /* 10680 flatbed_max_scan_width (& calibration block size) */ 145 /* SANE_Byte size; of remaining data, not useful */ 256 SANE_Int size; /* number of bytes in rest of structure */ member 267 SANE_Int size; /* number of bytes in rest of structure */ member 282 SANE_Int size; /* number of bytes in rest of structure (0x1c=28) */ member 284 SANE_Byte calInfoSize; /* size of individual info structure (=0x06) */ 345 void sanei_pieusb_cmd_get_scanned_lines(SANE_Int device_number, SANE_Byte* data, SANE_Int lines, SANE_Int size, struct Pieusb_Command_Status *status); 360 void sanei_pieusb_cmd_inquiry(SANE_Int device_number, struct Pieusb_Scanner_Properties* inq, SANE_Byte size, struct Pieusb_Command_Status *status);
|
/third_party/backends/backend/genesys/ |
H A D | device.cpp | 219 << " gamma_override_tables[0].size(): " << dev.gamma_override_tables[0].size() << '\n' in operator <<() 220 << " gamma_override_tables[1].size(): " << dev.gamma_override_tables[1].size() << '\n' in operator <<() 221 << " gamma_override_tables[2].size(): " << dev.gamma_override_tables[2].size() << '\n' in operator <<() 222 << " white_average_data.size(): " << dev.white_average_data.size() << '\n' in operator <<() 223 << " dark_average_data.size(): " << dev.dark_average_data.size() << '\ in operator <<() [all...] |
/third_party/benchmark/test/ |
H A D | benchmark_test.cc | 44 std::set<int64_t> ConstructRandomSet(int64_t size) { in ConstructRandomSet() argument 46 for (int i = 0; i < size; ++i) s.insert(s.end(), i); in ConstructRandomSet() 165 int64_t size = state.range(0) / static_cast<int64_t>(sizeof(int)); in BM_ParallelMemset() local 166 int thread_size = static_cast<int>(size) / state.threads(); in BM_ParallelMemset() 171 test_vector = new std::vector<int>(static_cast<size_t>(size)); in BM_ParallelMemset()
|
/third_party/icu/icu4j/perf-tests/perldriver/ |
H A D | Output.pm | 214 body { font-size: 10pt; font-family: sans-serif } 215 th { font-size: 10pt; border: 0 solid #000080; padding: 5 } 221 td { font-size: 10pt; text-align: Right; border: 0 solid #000080; padding: 5 } 226 td.error { font-size: 75%; border-right-width: 1; border-bottom-width: 1 } 227 td.errorLarge { font-size: 75%; color: #FF0000; font-weight: bold; border-right-width: 1;
|
/third_party/libuv/src/ |
H A D | fs-poll.c | 138 int uv_fs_poll_getpath(uv_fs_poll_t* handle, char* buffer, size_t* size) { in uv_fs_poll_getpath() argument 143 *size = 0; in uv_fs_poll_getpath() 151 if (required_len >= *size) { in uv_fs_poll_getpath() 152 *size = required_len + 1; in uv_fs_poll_getpath() 157 *size = required_len; in uv_fs_poll_getpath()
|
/third_party/libuv/src/unix/ |
H A D | ibmi.c | 405 /* The first loop to get the size of the array to be allocated */ in uv_interface_addresses() 513 size_t size; in uv_setup_args() local 517 size = sizeof(exepath); in uv_setup_args() 518 if (uv__search_path(argv[0], exepath, &size) == 0) { in uv_setup_args() 533 int uv_get_process_title(char* buffer, size_t size) { in uv_get_process_title() argument 534 if (buffer == NULL || size == 0) in uv_get_process_title()
|
/third_party/libcoap/src/oscore/ |
H A D | oscore.c | 346 uint8_t size) { in oscore_generate_nonce() 347 memset(buffer, 0, size); in oscore_generate_nonce() 349 memcpy(&(buffer[((size - 5) - ptr->key_id.length)]), in oscore_generate_nonce() 352 memcpy(&(buffer[size - ptr->partial_iv.length]), in oscore_generate_nonce() 355 for (int i = 0; i < size; i++) { in oscore_generate_nonce() 343 oscore_generate_nonce(cose_encrypt0_t *ptr, oscore_ctx_t *ctx, uint8_t *buffer, uint8_t size) oscore_generate_nonce() argument
|
/third_party/libdrm/nouveau/ |
H A D | abi16.c | 154 .size = ntfy->length, in abi16_ntfy() 279 bo->size = info->size; in abi16_bo_info() 333 info->size = bo->size; in abi16_bo_init()
|
/third_party/lzma/CPP/7zip/Archive/7z/ |
H A D | 7zExtract.cpp | 143 Z7_COM7F_IMF(CFolderOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize))
in Write() argument 148 while (size != 0)
in Write() 152 UInt32 cur = (size < _rem ? size : (UInt32)_rem);
in Write() 167 size -= cur;
in Write() 186 *processedSize += size;
in Write() 356 // for debug: to test zero size stream unpacking
in Extract()
|