HomeSort by relevance Sort by last modified time
    Searched refs:in_bytes (Results 1 - 11 of 11) sorted by null

  /external/tensorflow/tensorflow/python/kernel_tests/
decode_raw_op_test.py 33 in_bytes = array_ops.placeholder(dtypes.string, shape=[2])
34 decode = parsing_ops.decode_raw(in_bytes, out_type=dtypes.uint8)
37 result = decode.eval(feed_dict={in_bytes: ["A", "a"]})
40 result = decode.eval(feed_dict={in_bytes: ["wer", "XYZ"]})
47 decode.eval(feed_dict={in_bytes: ["short", "longer"]})
51 in_bytes = array_ops.placeholder(dtypes.string, shape=[None])
52 decode = parsing_ops.decode_raw(in_bytes, out_type=dtypes.int16)
55 result = decode.eval(feed_dict={in_bytes: ["AaBC"]})
62 decode.eval(feed_dict={in_bytes: ["123", "456"]})
66 in_bytes = array_ops.placeholder(dtypes.string, shape=[None]
    [all...]
decode_compressed_op_test.py 48 in_bytes = array_ops.placeholder(dtypes.string, shape=[2])
50 in_bytes, compression_type=compression_type)
54 feed_dict={in_bytes: [self._compress(b"AaAA", compression_type),
61 in_bytes = array_ops.placeholder(dtypes.string, shape=[None])
63 in_bytes, compression_type=compression_type)
67 feed_dict={in_bytes: [self._compress(b"AaBC", compression_type)]})
  /external/curl/src/
tool_convert.c 53 size_t res, in_bytes, out_bytes; local
65 in_bytes = out_bytes = length;
66 res = iconv(outbound_cd, &input_ptr, &in_bytes,
68 if((res == (size_t)-1) || (in_bytes != 0)) {
83 size_t res, in_bytes, out_bytes; local
95 in_bytes = out_bytes = length;
96 res = iconv(inbound_cd, &input_ptr, &in_bytes,
98 if((res == (size_t)-1) || (in_bytes != 0)) {
  /bionic/tests/
iconv_test.cpp 61 size_t in_bytes = strlen(in); local
66 EXPECT_EQ(0U, iconv(c, &in, &in_bytes, &out, &out_bytes));
73 EXPECT_EQ(0U, in_bytes);
87 size_t in_bytes = strlen(in); local
95 EXPECT_EQ(2U, iconv(c, &in, &in_bytes, &out, &out_bytes));
102 EXPECT_EQ(0U, in_bytes);
116 size_t in_bytes = strlen(in); local
124 EXPECT_EQ(static_cast<size_t>(-1), iconv(c, &in, &in_bytes, &out, &out_bytes));
130 EXPECT_EQ(0U, in_bytes);
144 size_t in_bytes = strlen(in) local
170 size_t in_bytes = strlen(in); local
203 size_t in_bytes = strlen(in); local
230 size_t in_bytes = strlen(in); local
278 size_t in_bytes = 0; local
299 size_t in_bytes = strlen(utf8); local
365 size_t in_bytes = n; local
437 size_t in_bytes = 0; local
    [all...]
  /external/curl/lib/
non-ascii.c 102 size_t in_bytes, out_bytes, rc; local
121 in_bytes = out_bytes = length;
122 rc = iconv(*cd, &input_ptr, &in_bytes,
126 if((rc == ICONV_ERROR) || (in_bytes != 0)) {
165 size_t in_bytes, out_bytes, rc; local
184 in_bytes = out_bytes = length;
185 rc = iconv(*cd, &input_ptr, &in_bytes,
189 if((rc == ICONV_ERROR) || (in_bytes != 0)) {
229 size_t in_bytes, out_bytes, rc; local
248 in_bytes = out_bytes = length
    [all...]
  /external/eigen/test/
cuda_common.h 38 std::ptrdiff_t in_bytes = in.size() * sizeof(typename Input::Scalar); local
41 cudaMalloc((void**)(&d_in), in_bytes);
44 cudaMemcpy(d_in, in.data(), in_bytes, cudaMemcpyHostToDevice);
57 cudaMemcpy(const_cast<typename Input::Scalar*>(in.data()), d_in, in_bytes, cudaMemcpyDeviceToHost); local
  /art/libdexfile/dex/
utf.h 52 const char* utf8_in, size_t in_bytes);
utf.cc 97 const char* utf8_data_in, size_t in_bytes) {
99 const char *in_end = utf8_data_in + in_bytes;
102 if (LIKELY(out_chars == in_bytes)) {
  /packages/apps/Gallery2/jni_jpegstream/src/
jpegstream.cpp 232 int8_t* in_bytes = static_cast<int8_t*>(in_buf); local
235 in_bytes += off;
241 written = w_ptr->write(in_bytes, in_len);
257 int8_t* in_bytes = static_cast<int8_t*>(in_buf); local
265 read = r_ptr->read(in_bytes, off, in_len);
  /external/libpng/contrib/tools/
pngfix.c 2284 png_uint_32 in_bytes = 0; local
    [all...]
  /external/boringssl/src/ssl/
ssl_lib.cc 1760 const uint8_t *in_bytes = reinterpret_cast<const uint8_t *>(in); local
    [all...]

Completed in 165 milliseconds