/external/grpc-grpc/third_party/nanopb/tests/intsizes/ |
D | intsizes.proto | 5 * The int_size setting will override the number of bits, but keep the type 14 required int32 req_int8 = 1 [(nanopb).int_size = IS_8]; 15 required uint32 req_uint8 = 2 [(nanopb).int_size = IS_8]; 16 required sint32 req_sint8 = 3 [(nanopb).int_size = IS_8]; 17 required int32 req_int16 = 4 [(nanopb).int_size = IS_16]; 18 required uint32 req_uint16 = 5 [(nanopb).int_size = IS_16]; 19 required sint32 req_sint16 = 6 [(nanopb).int_size = IS_16]; 20 required int32 req_int32 = 7 [(nanopb).int_size = IS_32]; 21 required uint32 req_uint32 = 8 [(nanopb).int_size = IS_32]; 22 required sint32 req_sint32 = 9 [(nanopb).int_size = IS_32]; [all …]
|
D | SConscript | 1 # Test that the int_size option in .proto works.
|
/external/nanopb-c/tests/intsizes/ |
D | intsizes.proto | 5 * The int_size setting will override the number of bits, but keep the type 14 required int32 req_int8 = 1 [(nanopb).int_size = IS_8]; 15 required uint32 req_uint8 = 2 [(nanopb).int_size = IS_8]; 16 required sint32 req_sint8 = 3 [(nanopb).int_size = IS_8]; 17 required int32 req_int16 = 4 [(nanopb).int_size = IS_16]; 18 required uint32 req_uint16 = 5 [(nanopb).int_size = IS_16]; 19 required sint32 req_sint16 = 6 [(nanopb).int_size = IS_16]; 20 required int32 req_int32 = 7 [(nanopb).int_size = IS_32]; 21 required uint32 req_uint32 = 8 [(nanopb).int_size = IS_32]; 22 required sint32 req_sint32 = 9 [(nanopb).int_size = IS_32]; [all …]
|
D | SConscript | 1 # Test that the int_size option in .proto works.
|
/external/autotest/client/common_lib/cros/bluetooth/ |
D | bluetooth_sdp_socket.py | 416 int_size = 1 << data_size 417 res = self._unpack_int(data, int_size) 421 res = res - (1 << (int_size * 8)) 427 scanned += int_size 433 int_size = 1 << (data_size - 5) 434 str_size = self._unpack_int(data, int_size) 436 res = data[int_size : int_size + str_size] 437 scanned += int_size + str_size 443 int_size = 1 << (data_size - 5) 444 total_size = self._unpack_int(data, int_size) [all …]
|
/external/cronet/net/ntlm/ |
D | ntlm_buffer_writer.cc | 162 size_t int_size = sizeof(T); in WriteUInt() local 163 if (!CanWrite(int_size)) in WriteUInt() 166 for (size_t i = 0; i < int_size; i++) { in WriteUInt() 171 AdvanceCursor(int_size); in WriteUInt()
|
D | ntlm_buffer_reader.cc | 281 size_t int_size = sizeof(T); in ReadUInt() local 282 if (!CanRead(int_size)) in ReadUInt() 286 for (size_t i = 0; i < int_size; i++) { in ReadUInt()
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_sample_aos.c | 439 LLVMValueRef int_size, in lp_build_sample_image_nearest() argument 464 int_size, in lp_build_sample_image_nearest() 474 flt_size = lp_build_int_to_float(&bld->float_size_bld, int_size); in lp_build_sample_image_nearest() 748 LLVMValueRef int_size, in lp_build_sample_image_linear() argument 780 int_size, in lp_build_sample_image_linear() 792 scaled_size = lp_build_shl_imm(&bld->int_size_bld, int_size, 8); in lp_build_sample_image_linear()
|
D | lp_bld_sample.c | 266 LLVMValueRef int_size, float_size; in lp_build_rho() local 287 int_size = lp_build_minify(int_size_bld, bld->int_size, first_level_vec, TRUE); in lp_build_rho() 288 float_size = lp_build_int_to_float(float_size_bld, int_size); in lp_build_rho() 1271 *out_size = lp_build_minify(&bld->int_size_bld, bld->int_size, ilevel_vec, TRUE); in lp_build_mipmap_level_sizes() 1299 bld->int_size); in lp_build_mipmap_level_sizes() 1303 int_size_vec = bld->int_size; in lp_build_mipmap_level_sizes() 1341 bld->int_size); in lp_build_mipmap_level_sizes() 1350 tmp[i] = bld->int_size; in lp_build_mipmap_level_sizes()
|
D | lp_bld_sample.h | 441 LLVMValueRef int_size; member
|
D | lp_bld_sample_soa.c | 3094 bld.int_size = tex_width; in lp_build_sample_soa_code() 3097 bld.int_size = LLVMBuildInsertElement(builder, bld.int_size_in_bld.undef, in lp_build_sample_soa_code() 3104 bld.int_size = LLVMBuildInsertElement(builder, bld.int_size, in lp_build_sample_soa_code() 3111 bld.int_size = LLVMBuildInsertElement(builder, bld.int_size, in lp_build_sample_soa_code() 3285 bld4.int_size = bld.int_size; in lp_build_sample_soa_code()
|
/external/openthread/third_party/mbedtls/repo/library/ |
D | pk_wrap.c | 520 unsigned char *sig, size_t int_size ) in extract_ecdsa_sig() argument 530 if( ( ret = extract_ecdsa_sig_int( p, end, sig, int_size ) ) != 0 ) in extract_ecdsa_sig() 533 if( ( ret = extract_ecdsa_sig_int( p, end, sig + int_size, int_size ) ) != 0 ) in extract_ecdsa_sig()
|
/external/libaom/av1/encoder/ |
D | encoder.h | 3997 int int_size = (int)bsize; in find_partition_size() local 4001 for (; int_size > 0; int_size -= 3) { in find_partition_size() 4002 *bh = mi_size_high[int_size]; in find_partition_size() 4003 *bw = mi_size_wide[int_size]; in find_partition_size() 4009 return (BLOCK_SIZE)int_size; in find_partition_size()
|
/external/mbedtls/library/ |
D | pk_wrap.c | 902 unsigned char *sig, size_t int_size ) in extract_ecdsa_sig() argument 912 if( ( ret = extract_ecdsa_sig_int( p, end, sig, int_size ) ) != 0 ) in extract_ecdsa_sig() 915 if( ( ret = extract_ecdsa_sig_int( p, end, sig + int_size, int_size ) ) != 0 ) in extract_ecdsa_sig()
|
/external/grpc-grpc/third_party/nanopb/generator/proto/ |
D | nanopb.proto | 42 optional IntSize int_size = 7 [default = IS_DEFAULT]; field
|
/external/nanopb-c/generator/proto/ |
D | nanopb.proto | 53 optional IntSize int_size = 7 [default = IS_DEFAULT]; field
|
/external/gfxstream-protocols/registry/vulkan/scripts/cereal/ |
D | api_log_decoder.py | 265 int_size=type.primitiveEncodingSize,
|
/external/nanopb-c/generator/nanopb/ |
D | options.proto | 55 optional IntSize int_size = 7 [default = IS_DEFAULT]; field
|
/external/tensorflow/tensorflow/lite/testing/ |
D | tflite_driver.cc | 316 int int_size = tensor.type == kTfLiteInt8 ? 1 : 2; in QuantizedCheck() local 317 for (int i = 0; i < tensor.bytes / int_size; i++) { in QuantizedCheck()
|
/external/python/cpython3/Lib/ |
D | smtpd.py | 910 int_size = int(arg) 911 options.size_limit = int_size
|
/external/deqp/external/openglcts/modules/glesext/geometry_shader/ |
D | esextcGeometryShaderAPI.cpp | 1883 const glw::GLint int_size = sizeof(glw::GLint); in iterate() local 1993 int_alignment = ssbo_alignment / int_size; in iterate() 1997 if ((ssbo_alignment % int_size) != 0) in iterate() 2004 << int_size << "]" << tcu::TestLog::EndMessage; in iterate() 2034 …gl.bindBufferRange(GL_SHADER_STORAGE_BUFFER, n_ssb /*binding index*/, m_ssbo_id, offset, int_size); in iterate()
|
/external/flatbuffers/tests/ |
D | py_flexbuffers_test.py | 60 def int_size(value): function 73 return tuple(1 << i for i in range(LOG2[int_size(value)], 4)) 243 self.assertEqual(flexbuffers.BitWidth.I(x), LOG2[int_size(x)])
|
/external/grpc-grpc/third_party/nanopb/generator/ |
D | nanopb_generator.py | 307 if isa and field_options.int_size != nanopb_pb2.IS_DEFAULT: 308 self.ctype = intsizes[field_options.int_size]
|
/external/grpc-grpc/third_party/nanopb/ |
D | CHANGELOG.txt | 51 Add int_size option for generator (issue 139)
|
/external/nanopb-c/generator/ |
D | nanopb_generator.py | 378 if isa and field_options.int_size != nanopb_pb2.IS_DEFAULT: 379 self.ctype = intsizes[field_options.int_size]
|