HomeSort by relevance Sort by last modified time
    Searched defs:out_size (Results 1 - 25 of 53) sorted by null

1 2 3

  /toolchain/binutils/binutils-2.27/gas/
compress-debug.c 48 int out_size = 0; local
60 out_size = *avail_out - strm->avail_out;
66 return out_size;
75 int *avail_out, int *out_size)
85 *out_size = *avail_out - strm->avail_out;
  /external/tensorflow/tensorflow/core/kernels/
conv_grad_ops.cc 58 int64 out_size = 0, pad_size = 0; local
61 padding, &out_size, &pad_size));
62 if (dim->output_size != out_size) {
65 dim->output_size, ", computed = ", out_size,
listdiff_op.cc 62 int64 out_size = 0; variable
65 ++out_size;
71 OP_REQUIRES_OK(context, context->allocate_output(0, {out_size}, &out));
75 OP_REQUIRES_OK(context, context->allocate_output(1, {out_size}, &indices));
80 OP_REQUIRES(context, p < out_size,
83 " when output Tensor only had ", out_size,
gather_functor_gpu.cu.h 35 int64 slice_size, int64 out_size) {
36 CUDA_1D_KERNEL_LOOP(i, out_size) {
80 const int64 out_size = out.size(); local
81 if (out_size == 0) {
93 CudaLaunchConfig config = GetCudaLaunchConfig(out_size, d);
99 indices_size, slice_size, out_size);
106 indices_size, slice_size, out_size);
gather_nd_op_gpu.cu.cc 34 const int64 slice_size, const int64 out_size) {
37 CUDA_1D_KERNEL_LOOP(i, out_size) {
75 const int64 out_size = Tout.size(); local
87 CudaLaunchConfig config = GetCudaLaunchConfig(out_size, d);
93 batch_indices, indices_size, s_size, out_size);
mirror_pad_op.cc 302 const int64 out_size = in0.dim_size(d) - (before + after); variable
304 OP_REQUIRES(context, before <= out_size && after <= out_size,
308 " greater than ", out_size));
310 OP_REQUIRES(context, before < out_size && after < out_size,
314 " not less than ", out_size));
316 output_shape.AddDim(out_size);
  /frameworks/base/tools/aapt2/io/
Util.h 57 int out_size; variable
58 bool result = out_->Next(data, &out_size);
59 *size = static_cast<size_t>(out_size);
91 size_t out_size; variable
92 bool result = in_->Next(data, &out_size);
93 *size = static_cast<int>(out_size);
  /external/brotli/java/org/brotli/wrapper/dec/
decoder_jni.cc 126 size_t out_size = 0; local
128 handle->state, &in_size, &in, &out_size, nullptr, nullptr);
  /external/libxml2/doc/examples/
testWriter.c 1149 int out_size; local
    [all...]
  /external/brotli/java/org/brotli/wrapper/enc/
encoder_jni.cc 140 size_t out_size = 0; local
142 handle->state, op, &in_size, &in, &out_size, nullptr, nullptr);
  /external/google-breakpad/src/client/
minidump_file_writer.cc 123 size_t out_size = sizeof(uint16_t) * out_count; local
124 result = mdstring->CopyIndexAfterObject(out_idx, out, out_size);
150 size_t out_size = sizeof(uint16_t) * out_count; local
151 result = mdstring->CopyIndexAfterObject(out_idx, out, out_size);
  /external/libbrillo/brillo/
data_encoding.cc 33 size_t out_size = modp_b64_encode(buffer.data(), local
36 return std::string{buffer.begin(), buffer.begin() + out_size};
  /external/xz-embedded/linux/include/linux/
xz.h 132 * if out_pos is equal to out_size.
134 * out_size.
135 * @out_size: Size of the output buffer
147 size_t out_size; member in struct:xz_buf
  /frameworks/ml/nn/common/include/
OperationsUtils.h 110 int32_t out_size = (in_size + stride - 1) / stride; local
111 int32_t tmp = (out_size - 1) * stride + filter_size;
  /system/bt/stack/a2dp/
a2dp_sbc_decoder.cc 80 uint32_t out_size = out_avail; local
83 &oi_size, out_ptr, &out_size);
88 out_avail -= out_size;
89 out_ptr += out_size / sizeof(*out_ptr);
  /art/test/1940-ddms-ext/
ddm_ext.cc 82 jint out_size; local
89 /*out*/&out_size,
93 ScopedLocalRef<jbyteArray> chunk_data(env, env->NewByteArray(out_size));
94 env->SetByteArrayRegion(chunk_data.get(), 0, out_size, out_data);
103 out_size));
  /external/elfutils/libelf/
elf_compress.c 102 size_t out_size = 2 * block; local
103 void *out_buf = malloc (out_size);
164 z.avail_out = out_size - used;
172 used += (out_size - used) - z.avail_out;
182 void *bigger = realloc (out_buf, out_size + block);
189 out_size += block;
  /external/libvncserver/client_examples/
vnc2mpg.c 173 int out_size, ret; local
207 out_size = avcodec_encode_video(c, video_outbuf, video_outbuf_size, picture_ptr);
209 if (out_size != 0) {
218 pkt.size= out_size;
  /frameworks/av/media/libstagefright/
SimpleDecodingSource.cpp 228 size_t out_ix, in_ix, out_offset, out_size; local
343 &out_ix, &out_offset, &out_size, &out_pts,
383 if (out_size == 0) {
389 if (mUsingSurface && out_size > 0) {
393 *buffer = new MediaBuffer(out_size);
  /external/libxcam/modules/ocl/
cl_geo_map_handler.cpp 56 float out_size[2]; local
58 _handler->get_geo_pixel_out_size (out_size[0], out_size[1]);
78 args.push_back (new CLArgumentTArray<float, 2> (out_size));
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
image_resize_ops.cc 68 // from in_size to out_size.
77 gtl::ArraySlice<int64> in_size, gtl::ArraySlice<int64> out_size) {
78 CHECK_EQ(in_size.size(), out_size.size());
88 } else if (out_size[i] == 1) {
89 // If in_size[i] > 1 but out_size[i] == 1, then we slice out the first
94 static_cast<uint64>(out_size[i] - 1));
96 dims.kernel_size[i] = (out_size[i] - 1) / gcd;
145 std::vector<int64> out_size, const int64 channels) {
170 ComputeResizeConvolutionParameters(in_size, out_size);
184 if (in_size[i] == 1 && out_size[i] > 1)
275 std::vector<int64> out_size; variable
    [all...]
  /external/xz-embedded/linux/lib/xz/
xz_dec_bcj.c 53 size_t out_size; member in struct:xz_dec_bcj
403 copy_size = min_t(size_t, s->temp.filtered, b->out_size - b->out_pos);
449 if (s->temp.size < b->out_size - b->out_pos || s->temp.size == 0) {
478 if (b->out_pos + s->temp.size < b->out_size)
490 if (b->out_pos < b->out_size) {
494 s->out_size = b->out_size;
497 b->out_size = sizeof(s->temp.buf);
504 b->out_size = s->out_size;
    [all...]
  /system/extras/verity/
build_verity_tree.cpp 56 unsigned char *out, size_t *out_size)
70 if (out_size) {
71 *out_size = s;
78 unsigned char *out, size_t *out_size,
83 *out_size = 0;
87 *out_size += s;
321 size_t out_size; local
324 verity_tree_levels[i + 1], &out_size,
327 assert(div_round_up(out_size, block_size) == verity_tree_level_blocks[i + 1]);
329 assert(out_size == hash_size)
    [all...]
  /external/boringssl/src/crypto/bytestring/
bytestring_test.cc 341 size_t out_size; local
344 ASSERT_TRUE(CBB_finish(cbb.get(), &out_buf, &out_size));
346 EXPECT_EQ(0u, out_size);
351 ASSERT_TRUE(CBB_finish(cbb.get(), &out_buf, &out_size));
353 EXPECT_EQ(1u, out_size);
366 size_t out_size; local
372 EXPECT_FALSE(CBB_finish(&child, &out_buf, &out_size));
374 ASSERT_TRUE(CBB_finish(cbb.get(), &out_buf, &out_size));
376 ASSERT_EQ(1u, out_size);
    [all...]
  /external/libxcam/tests/
test-image-blend.cpp 295 uint32_t out_size = output_buf_info.aligned_width * output_buf_info.aligned_height * 3 / 2; local
318 display, dma_fd_out, output_width, output_height, out_size,

Completed in 990 milliseconds

1 2 3