Home
last modified time | relevance | path

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

/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.py1319 fixed_length = ''
1346 fixed_length = res.group(2)
1347 if fixed_length:
1348 fixed_length = fixed_length[1:-1]
1372 if fixed_length:
1373 newentry = factory.EntryBytes(entry_type, name, tag, fixed_length)
1376 elif entry_type == 'int' and not fixed_length:
1378 elif entry_type == 'int64' and not fixed_length:
1380 elif entry_type == 'string' and not fixed_length:
1612 def EntryBytes(self, entry_type, name, tag, fixed_length): argument
[all …]
/external/nanopb-c/tests/field_size_32/
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/alltypes/
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/alltypes_proto3/
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/field_size_16_proto3/
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/io_errors_pointers/
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/alltypes_proto3_callback/
Dalltypes.options7 *.*fbytes fixed_length:true max_size:4
/external/nanopb-c/tests/alltypes_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/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/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/libxaac/decoder/
Dixheaacd_env_extr.c114 WORD32 fixed_length = 0, num_grid_info = 0, grid_info; in ixheaacd_read_esbr_pvc_envelope() local
179 fixed_length = 8; in ixheaacd_read_esbr_pvc_envelope()
183 fixed_length = 4; in ixheaacd_read_esbr_pvc_envelope()
187 fixed_length = 2; in ixheaacd_read_esbr_pvc_envelope()
191 fixed_length = 1; in ixheaacd_read_esbr_pvc_envelope()
205 for (j = 1, k = 1; j < fixed_length; j++, k++) { in ixheaacd_read_esbr_pvc_envelope()
217 for (j = 1; j < fixed_length; j++, k++) { in ixheaacd_read_esbr_pvc_envelope()
/external/aac/libSBRdec/src/
Denv_extr.cpp978 int num_grid_info, fixed_length, grid_info, j, k = 0; in sbrGetPvcEnvelope() local
982 fixed_length = 8 >> divMode; in sbrGetPvcEnvelope()
983 FDK_ASSERT(num_grid_info * fixed_length == PVC_NTIMESLOT); in sbrGetPvcEnvelope()
992 j = fixed_length - 1; in sbrGetPvcEnvelope()
1000 j = fixed_length; in sbrGetPvcEnvelope()
/external/nanopb-c/docs/
Dconcepts.rst151 3) If *(nanopb).fixed_length* is set to *true* and *(nanopb).max_size* is also set, then bytes map …
168 required bytes data = 1 [(nanopb).max_size = 40, (nanopb).fixed_length = true]; | pb_byte_t data[40…
Dreference.rst98 fixed_length Generate 'bytes' fields with constant length
/external/nanopb-c/generator/
Dnanopb_generator.py286 field_options.fixed_length = True
376 if field_options.fixed_length: