Searched refs:in_size (Results 1 - 21 of 21) sorted by relevance

/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusBase.h25 void* (operator new)(size_t in_size)
27 return DllExports::GdipAlloc(in_size);
33 void* (operator new[])(size_t in_size)
35 return DllExports::GdipAlloc(in_size);
/external/chromium_org/media/base/
H A Daudio_fifo.cc15 // Under "normal" circumstances, |size| will be equal to |in_size| and
17 // where we have not yet reached the "edge" of the FIFO. If |pos| + |in_size|
21 int pos, int max_size, int in_size, int* size, int* wrap_size) {
22 if (pos + in_size > max_size) {
25 *wrap_size = in_size - *size;
28 *size = in_size;
20 GetSizes( int pos, int max_size, int in_size, int* size, int* wrap_size) argument
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dcluster.h195 void HistogramRemap(const Histogram<kSize>* in, int in_size, argument
198 for (int i = 0; i < in_size; ++i) {
201 for (int i = 0; i < in_size; ++i) {
220 for (int i = 0; i < in_size; ++i) {
255 const int in_size = num_contexts * num_blocks; local
256 std::vector<int> cluster_size(in_size, 1);
257 out->resize(in_size);
258 histogram_symbols->resize(in_size);
259 for (int i = 0; i < in_size; ++i) {
276 &(*histogram_symbols)[0], in_size,
[all...]
/external/chromium_org/remoting/base/
H A Dcompound_buffer_unittest.cc115 int in_size = 0; local
118 if (!input->Next(&in, &in_size)) {
121 EXPECT_GT(in_size, -1);
123 if (out_size <= in_size) {
125 if (in_size > out_size) {
126 input->BackUp(in_size - out_size);
131 memcpy(out, in, in_size);
132 out += in_size;
133 out_size -= in_size;
H A Dutil.cc178 const webrtc::DesktopSize& in_size,
180 int left = (rect.left() * out_size.width()) / in_size.width();
181 int top = (rect.top() * out_size.height()) / in_size.height();
182 int right = (rect.right() * out_size.width() + in_size.width() - 1) /
183 in_size.width();
184 int bottom = (rect.bottom() * out_size.height() + in_size.height() - 1) /
185 in_size.height();
177 ScaleRect(const webrtc::DesktopRect& rect, const webrtc::DesktopSize& in_size, const webrtc::DesktopSize& out_size) argument
H A Dutil.h58 // Scales the supplied rectangle from |in_size| coordinates to |out_size|.
62 const webrtc::DesktopSize& in_size,
/external/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_unittest.cc133 int in_size = size; local
144 if (in_size <= out_size) {
145 memcpy(out, in, in_size);
146 output->BackUp(out_size - in_size);
152 in_size -= out_size;
163 int in_size = 0; local
168 if (!input->Next(&in, &in_size)) {
171 EXPECT_GT(in_size, -1);
172 if (in_size == 0) {
179 if (out_size <= in_size) {
[all...]
H A Dgzip_stream.cc81 int in_size; local
83 bool ok = sub_stream_->Next(&in, &in_size);
90 zcontext_.avail_in = in_size;
/external/lzma/xz-embedded/
H A Dxz.h127 * 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
H A Dxz_dec_stream.c171 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
186 dec_vli(struct xz_dec *s, const uint8_t *in, size_t *in_pos, size_t in_size) argument
[all...]
H A Dxz_dec_lzma2.c379 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
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_unittest.cc134 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...]
H A Dgzip_stream.cc92 int in_size; local
94 bool ok = sub_stream_->Next(&in, &in_size);
101 zcontext_.avail_in = in_size;
/external/ceres-solver/internal/ceres/
H A Dsuitesparse.cc117 int in_size,
119 CHECK_LE(in_size, out_size);
122 memcpy(v->x, x, in_size*sizeof(*x));
116 CreateDenseVector(const double* x, int in_size, int out_size) argument
H A Dsuitesparse.h104 // 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/qemu/android/
H A Dhw-qemud.c232 int in_size; member in struct:QemudSerial
260 qemu_put_be32(f, s->in_size);
279 s->in_size = qemu_get_be32(f);
319 /* if in_size is 0, we're reading the header */
375 s->in_size = hex2int( s->data0 + LEGACY_LENGTH_OFFSET, LENGTH_SIZE );
378 s->in_size = hex2int( s->data0 + LENGTH_OFFSET, LENGTH_SIZE );
383 s->in_size = hex2int( s->data0 + LENGTH_OFFSET, LENGTH_SIZE );
388 if (s->in_size <= 0 || s->in_channel < 0) {
393 if (s->in_size > MAX_SERIAL_PAYLOAD) {
395 __FUNCTION__, s->in_size,
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dcoda.h718 u_short in_size; /* Size of input buffer <= 2K */ member in struct:ViceIoctl
H A Dfuse.h607 uint32_t in_size; member in struct:fuse_ioctl_in
H A Dhdreg.h67 unsigned long in_size; member in struct:ide_task_request_s
/external/chromium_org/third_party/brotli/src/woff2/
H A Dwoff2_dec.cc128 bool TripletDecode(const uint8_t* flags_in, const uint8_t* in, size_t in_size, argument
134 if (n_points > in_size) {
153 if (triplet_index + n_data_bytes > in_size ||
/external/chromium_org/third_party/ots/src/
H A Dwoff2.cc231 bool TripletDecode(const uint8_t* flags_in, const uint8_t* in, size_t in_size, argument
238 if (n_points > in_size) {
257 if (triplet_index + n_data_bytes > in_size ||

Completed in 1261 milliseconds