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

1 2

  /external/libchrome/base/
tuple.h 103 constexpr size_t in_size = std::tuple_size<std::decay_t<InTuple>>::value; local
106 std::make_index_sequence<in_size>(),
  /external/xz-embedded/userspace/
boottest.c 42 size_t in_size; local
44 in_size = fread(in, 1, sizeof(in), stdin);
45 ret = decompress(in, in_size, NULL, NULL, out, NULL, &error);
52 size_t in_size; local
55 in_size = fread(in, 1, sizeof(in), stdin);
56 ret = decompress(in, in_size, NULL, &flush, NULL, &in_used, &error);
  /external/u-boot/drivers/watchdog/
tangier_wdt.c 56 int in_size; local
66 in_size = DIV_ROUND_UP(sizeof(ipc_wd_start), 4);
69 (u32 *)&ipc_wd_start, in_size, NULL, 0);
  /external/brotli/java/org/brotli/wrapper/dec/
decoder_jni.cc 127 size_t in_size = handle->input_length - handle->input_offset; local
130 handle->state, &in_size, &in, &out_size, nullptr, nullptr);
131 handle->input_offset = handle->input_length - in_size;
  /external/brotli/java/org/brotli/wrapper/enc/
encoder_jni.cc 139 size_t in_size = handle->input_last - handle->input_offset; local
142 handle->state, op, &in_size, &in, &out_size, nullptr, nullptr);
143 handle->input_offset = handle->input_last - in_size;
  /external/tensorflow/tensorflow/c/kernels/
bitcast_op.cc 46 size_t in_size; member in struct:BitcastOp
62 kernel->in_size = TF_DataTypeSize(kernel->input_data_type);
65 size_t check_size = std::max(kernel->in_size, kernel->out_size) %
66 std::min(kernel->in_size, kernel->out_size);
98 if (!(k->in_size >= k->out_size ||
100 TF_Dim(tensor, dim_count - 1) == k->out_size / k->in_size))) {
114 if (k->out_size < k->in_size) {
115 dims[new_dim_count++] = static_cast<int64_t>(k->in_size / k->out_size);
116 } else if (k->out_size > k->in_size) {
  /external/u-boot/lib/efi_loader/
efi_variable.c 173 unsigned long in_size; local
195 in_size = *data_size;
208 if (in_size < len)
223 if (in_size < len)
  /external/xz-embedded/linux/include/linux/
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
  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 93 int in_size; local
95 bool ok = sub_stream_->Next(&in, &in_size);
102 zcontext_.avail_in = in_size;
zero_copy_stream_unittest.cc 139 int in_size = size; local
150 if (in_size <= out_size) {
151 memcpy(out, in, in_size);
152 output->BackUp(out_size - in_size);
158 in_size -= out_size;
169 int in_size = 0; local
174 if (!input->Next(&in, &in_size)) {
177 EXPECT_GT(in_size, -1);
178 if (in_size == 0) {
185 if (out_size <= in_size) {
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
image_resize_ops.cc 73 // from in_size to out_size.
82 absl::Span<const int64> in_size, absl::Span<const int64> out_size,
84 CHECK_EQ(in_size.size(), out_size.size());
85 int num_spatial_dims = in_size.size();
90 if (in_size[i] == 1) {
95 // If in_size[i] > 1 but out_size[i] == 1, then we slice out the first
100 const int64 in_size_factor = align_corners ? in_size[i] - 1 : in_size[i];
116 // + lhs_dilation * (in_size - 1) + 1
119 int64 CalculateUpperPadding(int64 in_size, int64 out_size, int64 kernel_size
458 std::vector<int64> in_size = {input_shape.dim_size(1), local
612 std::vector<int64> in_size = {input_shape.dim_size(1), variable
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
ops_util_test.cc 57 int in_size; // Size of the dimension. member in struct:tensorflow::__anon45438::OpsUtilTest::bcast_struct::__anon45441
127 bcast.input.index, bcast.input.in_size, bcast.input.ksize,
135 GetBroadcastSize(bcast.input.index, bcast.input.in_size,
176 // Test index * stride > in_size fails with INVALID_ARGUMENT.
182 // in_size = 3, ksize = 3, stride = 1, pad_size = 0
194 // in_size = 3, ksize = 3, stride = 1, pad_size = 1
206 // in_size = 3, ksize = 3, stride = 1, pad_size = 2
218 // in_size = 3, ksize = 3, stride = 2, pad_size = 0
229 // in_size = 3, ksize = 3, stride = 2, pad_size = 1
240 // in_size = 3, ksize = 3, stride = 2, pad_size =
    [all...]
reduction_gpu_kernels.cu.h 508 int in_size, Op op, T init,
511 if (in_size <= 4096) {
516 num_threads, 0, cu_stream, in, out, in_size, op, init));
518 } else if (in_size <= 1 << 18) {
520 const int num_blocks = std::min(32, Eigen::divup(in_size, num_threads));
538 in_size, op, init));
555 in_size, op, init, cu_stream);
859 const int in_size = in_dim0 * in_dim1 * in_dim2; local
860 LaunchScalarReduction(ctx, out, in, in_size, op, init, cu_stream);
    [all...]
  /external/libxcam/tests/
test-image-blend.cpp 294 uint32_t in_size = input_buf_info0.aligned_width * input_buf_info0.aligned_height * 3 / 2; local
312 display, dma_fd0, input_width0, input_height, in_size,
315 display, dma_fd1, input_width0, input_height, in_size,
  /external/webp/src/demux/
anim_decode.c 348 const size_t in_size = iter.fragment.size; local
357 if (WebPDecode(in, in_size, config) != VP8_STATUS_OK) {
  /external/openssh/
moduli.c 582 u_int32_t generator_known, in_tests, in_tries, in_type, in_size; local
654 in_size = strtoul(cp, &cp, 10);
674 in_size += 1;
699 if ((u_int32_t)BN_num_bits(p) != (in_size + 1)) {
700 debug2("%10u: bit size %u mismatch", count_in, in_size);
703 if (in_size < QSIZE_MINIMUM) {
704 debug2("%10u: bit size %u too short", count_in, in_size);
784 in_tries, in_size, generator_known, p)) {
  /external/tensorflow/tensorflow/core/framework/
tensor.cc 656 int in_size = DataTypeSize(other.dtype()); local
658 if (in_size == 0) {
665 other.shape().num_elements() * in_size) {
    [all...]
  /external/webp/src/enc/
histogram_enc.c 1054 const int in_size = out->max_size; local
    [all...]
  /bionic/libc/kernel/uapi/linux/
coda.h 499 u_short in_size; member in struct:ViceIoctl
fuse.h 386 uint32_t in_size; member in struct:fuse_ioctl_in
hdreg.h 66 unsigned long in_size; member in struct:ide_task_request_s
  /external/kernel-headers/original/uapi/linux/
coda.h 718 u_short in_size; /* Size of input buffer <= 2K */ member in struct:ViceIoctl
fuse.h 671 uint32_t in_size; member in struct:fuse_ioctl_in
  /external/tensorflow/tensorflow/c/
c_api.cc 300 size_t in_size = TF_DataTypeSize(TF_TensorType(from)); local
301 if (in_size == 0) {
314 TF_TensorElementCount(from) * in_size) {
    [all...]
  /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...]

Completed in 2003 milliseconds

1 2