Home
last modified time | relevance | path

Searched refs:fixed_length (Results 1 – 25 of 36) sorted by relevance

12

/external/tensorflow/tensorflow/core/kernels/
Ddecode_padded_raw_op.cc44 int fixed_length; in Compute() local
49 fixed_length = length_input.scalar<int32>()(); in Compute()
52 context, fixed_length % sizeof(T) == 0, in Compute()
54 "fixed_length (", fixed_length, in Compute()
57 OP_REQUIRES(context, fixed_length > 0, in Compute()
58 errors::InvalidArgument("fixed_length (", fixed_length, in Compute()
61 int width = fixed_length / sizeof(T); in Compute()
79 memset(out_data, 0, fixed_length * flat_in.size()); in Compute()
88 if (flat_in(i).size() > fixed_length) { in Compute()
89 memcpy(out_data, in_data, fixed_length); in Compute()
[all …]
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DSelect.java60 … protected int fixed_length; // fixed length defined by subclasses TODO could be package-protected? field in Select
129 super.setLength((short) (fixed_length + padding)); // Update length in updatePosition()
310 return fixed_length; in getFixed_length()
318 final void setFixed_length(final int fixed_length) { in setFixed_length() argument
319 this.fixed_length = fixed_length; in setFixed_length()
/external/libevent/
Devent_rpcgen.py1316 fixed_length = ''
1343 fixed_length = res.group(2)
1344 if fixed_length:
1345 fixed_length = fixed_length[1:-1]
1369 if fixed_length:
1370 newentry = factory.EntryBytes(entry_type, name, tag, fixed_length)
1373 elif entry_type == 'int' and not fixed_length:
1375 elif entry_type == 'int64' and not fixed_length:
1377 elif entry_type == 'string' and not fixed_length:
1615 def EntryBytes(self, entry_type, name, tag, fixed_length): argument
[all …]
/external/nanopb-c/tests/alltypes/
Dalltypes.options3 *.*fbytes fixed_length:true max_size:4
/external/nanopb-c/tests/alltypes_proto3/
Dalltypes.options3 *.*fbytes fixed_length:true max_size:4
/external/nanopb-c/tests/without_64bit/
Dalltypes.options3 *.*fbytes fixed_length:true max_size:4
/external/nanopb-c/tests/field_size_32/
Dalltypes.options3 *.*fbytes fixed_length:true max_size:4
/external/nanopb-c/tests/io_errors/
Dalltypes.options3 *.*fbytes fixed_length:true max_size:4
/external/nanopb-c/tests/field_size_16/
Dalltypes.options3 *.*fbytes fixed_length:true max_size:4
/external/nanopb-c/tests/fuzztest/
Dalltypes_static.options4 *.*fbytes fixed_length:true max_size:4
Dalltypes_pointer.options3 *.*fbytes fixed_length:true max_size:4
/external/nanopb-c/tests/field_size_16_proto3/
Dalltypes.options3 *.*fbytes fixed_length:true max_size:4
/external/nanopb-c/tests/alltypes_pointer/
Dalltypes.options3 *.*fbytes fixed_length:true max_size:4
/external/nanopb-c/tests/io_errors_pointers/
Dalltypes.options3 *.*fbytes fixed_length:true max_size:4
/external/tensorflow/tensorflow/python/ops/
Dparsing_ops.py841 fixed_length=None, argument
867 if fixed_length is not None:
870 fixed_length=fixed_length,
/external/nanopb-c/tests/alltypes_callback/
Dalltypes.options7 *.*fbytes fixed_length:true max_size:4
/external/nanopb-c/tests/alltypes_proto3_callback/
Dalltypes.options7 *.*fbytes fixed_length:true max_size:4
/external/nanopb-c/tests/regression/issue_322/
Ddefaults.proto5 …bytes b1 = 1 [default = "\xDE\xAD\x00\xBE\xEF", (nanopb).max_size = 5, (nanopb).fixed_length=true];
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/
DDecodePaddedRaw.pbtxt8 name: "fixed_length"
/external/nanopb-c/generator/proto/
Dnanopb.proto19 FT_INLINE = 5; // Legacy option, use the separate 'fixed_length' option instead
82 optional bool fixed_length = 15 [default = false]; field
/external/tensorflow/tensorflow/core/ops/
Dparsing_ops.cc121 DimensionHandle fixed_length; in __anon7727dd120302() local
122 TF_RETURN_IF_ERROR(c->MakeDimForScalarInput(1, &fixed_length)); in __anon7727dd120302()
130 TF_RETURN_IF_ERROR(c->Divide(fixed_length, data_type_size, true, &width)); in __anon7727dd120302()
/external/nanopb-c/generator/nanopb/
Doptions.proto27 FT_INLINE = 5; // Legacy option, use the separate 'fixed_length' option instead
90 optional bool fixed_length = 15 [default = false]; field
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_DecodePaddedRaw.pbtxt8 name: "fixed_length"
/external/libxaac/decoder/
Dixheaacd_env_extr.c113 WORD32 fixed_length = 0, num_grid_info = 0, grid_info; in ixheaacd_read_esbr_pvc_envelope() local
178 fixed_length = 8; in ixheaacd_read_esbr_pvc_envelope()
182 fixed_length = 4; in ixheaacd_read_esbr_pvc_envelope()
186 fixed_length = 2; in ixheaacd_read_esbr_pvc_envelope()
190 fixed_length = 1; in ixheaacd_read_esbr_pvc_envelope()
204 for (j = 1, k = 1; j < fixed_length; j++, k++) { in ixheaacd_read_esbr_pvc_envelope()
216 for (j = 1; j < fixed_length; j++, k++) { in ixheaacd_read_esbr_pvc_envelope()
/external/tensorflow/tensorflow/python/kernel_tests/
Dparsing_ops_test.py2301 def _decode_v2(self, words, fixed_length=None): argument
2305 examples, dtypes.uint8, fixed_length=fixed_length)
2308 def _ordinalize(self, words, fixed_length=None): argument
2310 if fixed_length is None:
2311 fixed_length = len(words[0])
2315 for i in range(fixed_length):
2354 observed = self._decode_v2(words, fixed_length=8)
2355 expected = self._ordinalize(words, fixed_length=8)

12