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

1 2 3 4 5 6 7

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusbase.h 36 static void* operator new(size_t in_size)
38 return DllExports::GdipAlloc(in_size);
40 static void* operator new[](size_t in_size)
42 return DllExports::GdipAlloc(in_size);
  /system/core/trusty/gatekeeper/
trusty_gatekeeper_ipc.h 20 int trusty_gatekeeper_call(uint32_t cmd, void *in, uint32_t in_size, uint8_t *out,
trusty_gatekeeper_ipc.c 42 int trusty_gatekeeper_call(uint32_t cmd, void *in, uint32_t in_size, uint8_t *out,
49 size_t msg_size = in_size + sizeof(struct gatekeeper_message);
52 memcpy(msg->payload, in, in_size);
  /external/opencv3/3rdparty/include/ffmpeg_/libavutil/
base64.h 50 * null terminator), must be at least AV_BASE64_SIZE(in_size)
52 * @param in_size size in bytes of the in buffer
55 char *av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size);
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
perf 227 in_size=$(expr $4 \* $5)
230 3) in_size=$(expr $in_size \* 3) ;;
231 1|2|4|5|6|7) in_size=$(expr $in_size \* 2) ;; # 5, 6, 7 should not be here
232 0|5) in_size=$(expr $(expr $in_size \* 3) / 2) ;;
234 7|9) in_size=$(expr $in_size / 2) ;;
235 10) in_size=$(expr $in_size / 4) ;
    [all...]
  /external/lzma/xz-embedded/
xz_dec_test.c 76 buffers.in_size = 0;
122 if (buffers.in_pos == buffers.in_size) {
124 buffers.in_size = min(remaining, sizeof(buffer_in));
125 if (copy_from_user(buffer_in, buf, buffers.in_size))
128 buf += buffers.in_size;
129 remaining -= buffers.in_size;
145 return size - remaining - (buffers.in_size - buffers.in_pos);
xz.h 127 * if in_pos is equal to in_size.
129 * in_size.
130 * @in_size: Size of the input buffer
143 size_t in_size; member in struct:xz_buf
xz_dec_stream.c 171 b->in_size - b->in_pos, s->temp.size - s->temp.pos);
187 size_t *in_pos, size_t in_size)
194 while (*in_pos < in_size) {
319 ret = dec_vli(s, b->in, &b->in_pos, b->in_size);
369 if (b->in_pos == b->in_size)
393 if (b->in_pos == b->in_size)
609 if (b->in_pos == b->in_size)
656 if (b->in_pos == b->in_size)
697 if (b->in_pos == b->in_size) {
775 ret = b->in_pos == b->in_size
    [all...]
xz_dec_lzma2.c 379 while (*left > 0 && b->in_pos < b->in_size
381 copy_size = min(b->in_size - b->in_pos,
452 if (b->in_pos == b->in_size)
851 in_avail = b->in_size - b->in_pos;
893 in_avail = b->in_size - b->in_pos;
901 s->rc.in_limit = b->in_size - LZMA_IN_REQUIRED;
914 in_avail = b->in_size - b->in_pos;
936 while (b->in_pos < b->in_size || s->lzma2.sequence == SEQ_LZMA_RUN) {
1083 || (b->in_pos == b->in_size
  /system/update_engine/payload_consumer/
xz_extent_writer.cc 79 request.in_size = count;
99 CHECK_EQ(request.in_size, request.in_pos);
100 if (request.in_size == request.in_pos)
108 request.in + request.in_size);
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 134 int in_size = size; local
145 if (in_size <= out_size) {
146 memcpy(out, in, in_size);
147 output->BackUp(out_size - in_size);
153 in_size -= out_size;
164 int in_size = 0; local
169 if (!input->Next(&in, &in_size)) {
172 EXPECT_GT(in_size, -1);
173 if (in_size == 0) {
180 if (out_size <= in_size) {
    [all...]
gzip_stream.cc 92 int in_size; local
94 bool ok = sub_stream_->Next(&in, &in_size);
101 zcontext_.avail_in = in_size;
  /external/wpa_supplicant_8/src/utils/
common.c 1036 size_t utf8_unescape(const char *inp, size_t in_size,
1044 if (!in_size)
1045 in_size = os_strlen(inp);
1048 if (*inp == '\'' && in_size) {
1050 in_size--;
1053 while (in_size--) {
1064 if (!in_size--)
1083 size_t utf8_escape(const char *inp, size_t in_size,
1093 if (!in_size)
1094 in_size = os_strlen(inp)
    [all...]
common.h 536 size_t utf8_escape(const char *inp, size_t in_size,
538 size_t utf8_unescape(const char *inp, size_t in_size,
  /external/ceres-solver/internal/ceres/
suitesparse.cc 117 int in_size,
119 CHECK_LE(in_size, out_size);
122 memcpy(v->x, x, in_size*sizeof(*x));
suitesparse.h 104 // with the first in_size entries copied from x. If x is NULL, then
106 cholmod_dense* CreateDenseVector(const double* x, int in_size, int out_size);
  /external/vboot_reference/firmware/stub/
vboot_api_stub.c 82 VbError_t VbExDecompress(void *inbuf, uint32_t in_size,
  /external/toybox/toys/pending/
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 in struct:xz_buf
230 b.in_size = 0;
236 if (b.in_pos == b.in_size) {
237 b.in_size = read(fd, in, sizeof(in));
    [all...]
  /system/extras/verity/
build_verity_tree.cpp 77 const unsigned char *in, size_t in_size,
84 for (size_t i = 0; i < in_size; i += block_size) {
  /external/webp/src/demux/
anim_decode.c 339 const size_t in_size = iter.fragment.size; local
348 if (WebPDecode(in, in_size, config) != VP8_STATUS_OK) {
  /system/update_engine/payload_generator/
payload_file.cc 39 DeltaObject(const string& in_name, const int in_type, const off_t in_size)
42 size(in_size) {}
  /external/vboot_reference/firmware/include/
vboot_api.h     [all...]
  /external/vboot_reference/tests/
vboot_region_tests.c 164 VbError_t VbExDecompress(void *inbuf, uint32_t in_size,
  /bionic/libc/kernel/uapi/linux/
coda.h 619 u_short in_size; member in struct:ViceIoctl
fuse.h 464 uint32_t in_size; member in struct:fuse_ioctl_in

Completed in 1178 milliseconds

1 2 3 4 5 6 7