/third_party/node/deps/brotli/c/enc/ |
H A D | cluster_inc.h | 170 symbols[0..in_size), but this property is not preserved in this function. 173 size_t in_size, const uint32_t* clusters, size_t num_clusters, 176 for (i = 0; i < in_size; ++i) { 196 for (i = 0; i < in_size; ++i) { 250 MemoryManager* m, const HistogramType* in, const size_t in_size, 253 uint32_t* cluster_size = BROTLI_ALLOC(m, uint32_t, in_size); 254 uint32_t* clusters = BROTLI_ALLOC(m, uint32_t, in_size); 267 for (i = 0; i < in_size; ++i) { 271 for (i = 0; i < in_size; ++i) { 277 for (i = 0; i < in_size; [all...] |
H A D | brotli_bit_stream.c | 623 /* Finds runs of zeros in v[0..in_size) and replaces them with a prefix code of 629 static void RunLengthCodeZeros(const size_t in_size, in RunLengthCodeZeros() argument 635 for (i = 0; i < in_size;) { in RunLengthCodeZeros() 637 for (; i < in_size && v[i] != 0; ++i) ; in RunLengthCodeZeros() 638 for (; i < in_size && v[i] == 0; ++i) { in RunLengthCodeZeros() 647 for (i = 0; i < in_size;) { in RunLengthCodeZeros() 656 for (k = i + 1; k < in_size && v[k] == 0; ++k) { in RunLengthCodeZeros()
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
H A D | cluster_inc.h | 170 symbols[0..in_size), but this property is not preserved in this function. 173 size_t in_size, const uint32_t* clusters, size_t num_clusters, 176 for (i = 0; i < in_size; ++i) { 196 for (i = 0; i < in_size; ++i) { 250 MemoryManager* m, const HistogramType* in, const size_t in_size, 253 uint32_t* cluster_size = BROTLI_ALLOC(m, uint32_t, in_size); 254 uint32_t* clusters = BROTLI_ALLOC(m, uint32_t, in_size); 267 for (i = 0; i < in_size; ++i) { 271 for (i = 0; i < in_size; ++i) { 277 for (i = 0; i < in_size; [all...] |
H A D | brotli_bit_stream.c | 623 /* Finds runs of zeros in v[0..in_size) and replaces them with a prefix code of 629 static void RunLengthCodeZeros(const size_t in_size, in RunLengthCodeZeros() argument 635 for (i = 0; i < in_size;) { in RunLengthCodeZeros() 637 for (; i < in_size && v[i] != 0; ++i) ; in RunLengthCodeZeros() 638 for (; i < in_size && v[i] == 0; ++i) { in RunLengthCodeZeros() 647 for (i = 0; i < in_size;) { in RunLengthCodeZeros() 656 for (k = i + 1; k < in_size && v[k] == 0; ++k) { in RunLengthCodeZeros()
|
/third_party/ffmpeg/libavcodec/ |
H A D | truehd_core_bsf.c | 43 int in_size, out_size; in truehd_core_filter() local 57 in_size = (AV_RB16(pkt->data) & 0xFFF) * 2; in truehd_core_filter() 58 if (in_size < 4 || in_size > pkt->size) { in truehd_core_filter() 97 if (out_size < in_size) { in truehd_core_filter()
|
H A D | ws-snd1.c | 60 int in_size, out_size, ret; in ws_snd_decode_frame() local 74 in_size = AV_RL16(&buf[2]); in ws_snd_decode_frame() 77 if (in_size > buf_size) { in ws_snd_decode_frame() 89 if (in_size == out_size) { in ws_snd_decode_frame()
|
H A D | h264_mp4toannexb_bsf.c | 50 const uint8_t *in, int in_size, int ps, int copy) in count_or_copy() 58 memcpy(*out + start_code_size, in, in_size); in count_or_copy() 66 *out += start_code_size + in_size; in count_or_copy() 68 *out_size += start_code_size + in_size; in count_or_copy() 49 count_or_copy(uint8_t **out, uint64_t *out_size, const uint8_t *in, int in_size, int ps, int copy) count_or_copy() argument
|
H A D | exrenc.c | 184 const uint8_t *in, int64_t in_size) in rle_compress() 188 while (i < in_size) { in rle_compress() 189 while (i + run < in_size && in[i] == in[i + run] && run < 128) in rle_compress() 199 if (i + run < in_size) in rle_compress() 201 while (i + copy < in_size && copy < 127 && in[i + copy] != in[i + copy - 1]) in rle_compress() 183 rle_compress(uint8_t *out, int64_t out_size, const uint8_t *in, int64_t in_size) rle_compress() argument
|
/third_party/protobuf/src/google/protobuf/io/ |
H A D | zero_copy_stream_unittest.cc | 144 int in_size = size; in WriteToOutput() local 155 if (in_size <= out_size) { in WriteToOutput() 156 memcpy(out, in, in_size); in WriteToOutput() 157 output->BackUp(out_size - in_size); in WriteToOutput() 163 in_size -= out_size; in WriteToOutput() 174 int in_size = 0; in ReadFromInput() local 179 if (!input->Next(&in, &in_size)) { in ReadFromInput() 182 EXPECT_GT(in_size, -1); in ReadFromInput() 183 if (in_size == 0) { in ReadFromInput() 190 if (out_size <= in_size) { in ReadFromInput() [all...] |
H A D | gzip_stream.cc | 99 int in_size; in Inflate() local 101 bool ok = sub_stream_->Next(&in, &in_size); in Inflate() 108 zcontext_.avail_in = in_size; in Inflate()
|
/third_party/ffmpeg/libavformat/ |
H A D | data_uri.c | 40 size_t in_size; in data_open() local 73 in_size = strlen(data); in data_open() 75 size_t out_size = 3 * (in_size / 4) + 1; in data_open() 88 dc->size = in_size; in data_open()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | common.c | 1069 size_t utf8_unescape(const char *inp, size_t in_size, in utf8_unescape() argument 1077 if (!in_size) in utf8_unescape() 1078 in_size = os_strlen(inp); in utf8_unescape() 1081 if (*inp == '\'' && in_size) { in utf8_unescape() 1083 in_size--; in utf8_unescape() 1086 while (in_size) { in utf8_unescape() 1087 in_size--; in utf8_unescape() 1098 if (!in_size) in utf8_unescape() 1100 in_size--; in utf8_unescape() 1118 size_t utf8_escape(const char *inp, size_t in_size, in utf8_escape() argument [all...] |
H A D | common.h | 567 size_t utf8_escape(const char *inp, size_t in_size, 569 size_t utf8_unescape(const char *inp, size_t in_size,
|
/third_party/ffmpeg/libavutil/ |
H A D | base64.c | 147 char *av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size) in av_base64_encode() argument 154 int bytes_remaining = in_size; in av_base64_encode() 156 if (in_size >= UINT_MAX / 4 || in av_base64_encode() 157 out_size < AV_BASE64_SIZE(in_size)) in av_base64_encode()
|
H A D | base64.h | 55 * null terminator), must be at least AV_BASE64_SIZE(in_size) 57 * @param in_size size in bytes of the in buffer 60 char *av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size);
|
/third_party/toybox/toys/pending/ |
H A D | xzcat.c | 77 * if in_pos is equal to in_size. 79 * in_size. 80 * @in_size: Size of the input buffer 93 size_t in_size; member 230 b.in_size = 0; in do_xzcat() 236 if (b.in_pos == b.in_size) { in do_xzcat() 237 b.in_size = read(fd, in, sizeof(in)); in do_xzcat() 1526 while (*left > 0 && b->in_pos < b->in_size in dict_uncompressed() 1528 copy_size = minof(b->in_size - b->in_pos, in dict_uncompressed() 1595 if (b->in_pos == b->in_size) retur in rc_read_init() 2501 dec_vli(struct xz_dec *s, const uint8_t *in, size_t *in_pos, size_t in_size) dec_vli() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | common.c | 1134 size_t utf8_unescape(const char *inp, size_t in_size, in utf8_unescape() argument 1142 if (!in_size) in utf8_unescape() 1143 in_size = os_strlen(inp); in utf8_unescape() 1146 if (*inp == '\'' && in_size) { in utf8_unescape() 1148 in_size--; in utf8_unescape() 1151 while (in_size) { in utf8_unescape() 1152 in_size--; in utf8_unescape() 1163 if (!in_size) in utf8_unescape() 1165 in_size--; in utf8_unescape() 1183 size_t utf8_escape(const char *inp, size_t in_size, in utf8_escape() argument [all...] |
H A D | common.h | 589 size_t utf8_escape(const char *inp, size_t in_size, 591 size_t utf8_unescape(const char *inp, size_t in_size,
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/dec/ |
H A D | decoder_jni.cc | 127 size_t in_size = handle->input_length - handle->input_offset; in Java_org_brotli_wrapper_dec_DecoderJNI_nativePush() local 130 handle->state, &in_size, &in, &out_size, nullptr, nullptr); in Java_org_brotli_wrapper_dec_DecoderJNI_nativePush() 131 handle->input_offset = handle->input_length - in_size; in Java_org_brotli_wrapper_dec_DecoderJNI_nativePush()
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/enc/ |
H A D | encoder_jni.cc | 139 size_t in_size = handle->input_last - handle->input_offset; in Java_org_brotli_wrapper_enc_EncoderJNI_nativePush() local 142 handle->state, op, &in_size, &in, &out_size, nullptr, nullptr); in Java_org_brotli_wrapper_enc_EncoderJNI_nativePush() 143 handle->input_offset = handle->input_last - in_size; in Java_org_brotli_wrapper_enc_EncoderJNI_nativePush()
|
/third_party/exfatprogs/lib/ |
H A D | exfat_fs.c | 261 size_t in_size; in exfat_resolve_path() local 287 in_size = (utf16_path - ctx->utf16_path) * sizeof(__le16); in exfat_resolve_path() 288 return exfat_utf16_dec(ctx->utf16_path, in_size, in exfat_resolve_path()
|
/third_party/f2fs-tools/tools/ |
H A D | sha512.c | 253 void f2fs_sha512(const unsigned char *in, unsigned long in_size, in f2fs_sha512() argument 259 sha512_process(&md, in, in_size); in f2fs_sha512()
|
/third_party/skia/third_party/externals/libwebp/src/demux/ |
H A D | anim_decode.c | 356 const size_t in_size = iter.fragment.size; in WebPAnimDecoderGetNext() local 368 if (WebPDecode(in, in_size, config) != VP8_STATUS_OK) { in WebPAnimDecoderGetNext()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | histogram_enc.c | 1055 const int in_size = out->max_size; in HistogramRemap() local 1058 for (i = 0; i < in_size; ++i) { in HistogramRemap() 1079 for (i = 0; i < in_size; ++i) { in HistogramRemap() 1088 for (i = 0; i < in_size; ++i) { in HistogramRemap()
|
/third_party/ntfs-3g/include/fuse-lite/ |
H A D | fuse_kernel.h | 397 __u32 in_size; member
|