Home
last modified time | relevance | path

Searched refs:int_size (Results 1 – 22 of 22) sorted by relevance

/external/grpc-grpc/third_party/nanopb/tests/intsizes/
Dintsizes.proto5 * 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 …]
DSConscript1 # Test that the int_size option in .proto works.
/external/nanopb-c/tests/intsizes/
Dintsizes.proto5 * 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 …]
DSConscript1 # Test that the int_size option in .proto works.
/external/autotest/client/common_lib/cros/bluetooth/
Dbluetooth_sdp_socket.py410 int_size = 1 << data_size
411 res = self._unpack_int(data, int_size)
415 res = res - (1 << (int_size * 8))
421 scanned += int_size
427 int_size = 1 << (data_size - 5)
428 str_size = self._unpack_int(data, int_size)
430 res = data[int_size : int_size + str_size]
431 scanned += int_size + str_size
437 int_size = 1 << (data_size - 5)
438 total_size = self._unpack_int(data, int_size)
[all …]
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_sample_aos.c624 LLVMValueRef int_size, in lp_build_sample_image_nearest() argument
649 int_size, in lp_build_sample_image_nearest()
659 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_nearest_afloat() argument
766 flt_size = lp_build_int_to_float(&bld->float_size_bld, int_size); in lp_build_sample_image_nearest_afloat()
1023 LLVMValueRef int_size, in lp_build_sample_image_linear() argument
1055 int_size, in lp_build_sample_image_linear()
1067 scaled_size = lp_build_shl_imm(&bld->int_size_bld, int_size, 8); in lp_build_sample_image_linear()
1223 LLVMValueRef int_size, in lp_build_sample_image_linear_afloat() argument
1251 flt_size = lp_build_int_to_float(&bld->float_size_bld, int_size); in lp_build_sample_image_linear_afloat()
Dlp_bld_sample.c231 LLVMValueRef int_size, float_size; in lp_build_rho() local
252 int_size = lp_build_minify(int_size_bld, bld->int_size, first_level_vec, TRUE); in lp_build_rho()
253 float_size = lp_build_int_to_float(float_size_bld, int_size); in lp_build_rho()
1234 *out_size = lp_build_minify(&bld->int_size_bld, bld->int_size, ilevel_vec, TRUE); in lp_build_mipmap_level_sizes()
1262 bld->int_size); in lp_build_mipmap_level_sizes()
1266 int_size_vec = bld->int_size; in lp_build_mipmap_level_sizes()
1304 bld->int_size); in lp_build_mipmap_level_sizes()
1313 tmp[i] = bld->int_size; in lp_build_mipmap_level_sizes()
Dlp_bld_sample.h393 LLVMValueRef int_size; member
Dlp_bld_sample_soa.c3033 bld.int_size = tex_width; in lp_build_sample_soa_code()
3036 bld.int_size = LLVMBuildInsertElement(builder, bld.int_size_in_bld.undef, in lp_build_sample_soa_code()
3043 bld.int_size = LLVMBuildInsertElement(builder, bld.int_size, in lp_build_sample_soa_code()
3050 bld.int_size = LLVMBuildInsertElement(builder, bld.int_size, in lp_build_sample_soa_code()
3219 bld4.int_size = bld.int_size; in lp_build_sample_soa_code()
/external/libaom/libaom/av1/encoder/
Dencoder.h1266 int int_size = (int)bsize; in find_partition_size() local
1270 for (; int_size > 0; int_size -= 3) { in find_partition_size()
1271 *bh = mi_size_high[int_size]; in find_partition_size()
1272 *bw = mi_size_wide[int_size]; in find_partition_size()
1278 return (BLOCK_SIZE)int_size; in find_partition_size()
/external/grpc-grpc/third_party/nanopb/generator/proto/
Dnanopb.proto42 optional IntSize int_size = 7 [default = IS_DEFAULT]; field
/external/nanopb-c/generator/proto/
Dnanopb.proto47 optional IntSize int_size = 7 [default = IS_DEFAULT]; field
/external/nanopb-c/generator/nanopb/
Doptions.proto55 optional IntSize int_size = 7 [default = IS_DEFAULT]; field
/external/python/cpython3/Lib/
Dsmtpd.py897 int_size = int(arg)
898 options.size_limit = int_size
/external/deqp/external/openglcts/modules/glesext/geometry_shader/
DesextcGeometryShaderAPI.cpp1875 const glw::GLint int_size = sizeof(glw::GLint); in iterate() local
1985 int_alignment = ssbo_alignment / int_size; in iterate()
1989 if ((ssbo_alignment % int_size) != 0) in iterate()
1996 << int_size << "]" << tcu::TestLog::EndMessage; in iterate()
2026 …gl.bindBufferRange(GL_SHADER_STORAGE_BUFFER, n_ssb /*binding index*/, m_ssbo_id, offset, int_size); in iterate()
/external/grpc-grpc/third_party/nanopb/generator/
Dnanopb_generator.py307 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/
DCHANGELOG.txt51 Add int_size option for generator (issue 139)
/external/nanopb-c/generator/
Dnanopb_generator.py358 if isa and field_options.int_size != nanopb_pb2.IS_DEFAULT:
359 self.ctype = intsizes[field_options.int_size]
/external/nanopb-c/
DCHANGELOG.txt112 Add int_size option for generator (issue 139)
/external/protobuf/python/google/protobuf/internal/
Dreflection_test.py2223 int_size = 1 + 2 + 3
2224 self.assertEqual(int_size, self.packed_proto.ByteSize())
2230 self.assertEqual(int_size+double_size, self.packed_proto.ByteSize())
/external/grpc-grpc/third_party/nanopb/docs/
Dreference.rst75 int_size Override the integer type of a field.
/external/nanopb-c/docs/
Dreference.rst77 int_size Override the integer type of a field.