/external/tensorflow/tensorflow/core/kernels/ |
D | decode_padded_raw_op.cc | 44 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/ |
D | Select.java | 60 … 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/ |
D | event_rpcgen.py | 1316 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/ |
D | alltypes.options | 3 *.*fbytes fixed_length:true max_size:4
|
/external/nanopb-c/tests/alltypes_proto3/ |
D | alltypes.options | 3 *.*fbytes fixed_length:true max_size:4
|
/external/nanopb-c/tests/without_64bit/ |
D | alltypes.options | 3 *.*fbytes fixed_length:true max_size:4
|
/external/nanopb-c/tests/field_size_32/ |
D | alltypes.options | 3 *.*fbytes fixed_length:true max_size:4
|
/external/nanopb-c/tests/io_errors/ |
D | alltypes.options | 3 *.*fbytes fixed_length:true max_size:4
|
/external/nanopb-c/tests/field_size_16/ |
D | alltypes.options | 3 *.*fbytes fixed_length:true max_size:4
|
/external/nanopb-c/tests/fuzztest/ |
D | alltypes_static.options | 4 *.*fbytes fixed_length:true max_size:4
|
D | alltypes_pointer.options | 3 *.*fbytes fixed_length:true max_size:4
|
/external/nanopb-c/tests/field_size_16_proto3/ |
D | alltypes.options | 3 *.*fbytes fixed_length:true max_size:4
|
/external/nanopb-c/tests/alltypes_pointer/ |
D | alltypes.options | 3 *.*fbytes fixed_length:true max_size:4
|
/external/nanopb-c/tests/io_errors_pointers/ |
D | alltypes.options | 3 *.*fbytes fixed_length:true max_size:4
|
/external/tensorflow/tensorflow/python/ops/ |
D | parsing_ops.py | 841 fixed_length=None, argument 867 if fixed_length is not None: 870 fixed_length=fixed_length,
|
/external/nanopb-c/tests/alltypes_callback/ |
D | alltypes.options | 7 *.*fbytes fixed_length:true max_size:4
|
/external/nanopb-c/tests/alltypes_proto3_callback/ |
D | alltypes.options | 7 *.*fbytes fixed_length:true max_size:4
|
/external/nanopb-c/tests/regression/issue_322/ |
D | defaults.proto | 5 …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/ |
D | DecodePaddedRaw.pbtxt | 8 name: "fixed_length"
|
/external/nanopb-c/generator/proto/ |
D | nanopb.proto | 19 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/ |
D | parsing_ops.cc | 121 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/ |
D | options.proto | 27 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/ |
D | api_def_DecodePaddedRaw.pbtxt | 8 name: "fixed_length"
|
/external/libxaac/decoder/ |
D | ixheaacd_env_extr.c | 113 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/ |
D | parsing_ops_test.py | 2301 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)
|