/external/parameter-framework/upstream/test/test-fixed-point-parameter/ |
D | VirtualSubsystem.xml | 9 <FixedPointParameter Name="q0.0" Size="32" Integral="0" Fractional="0"/> 10 <FixedPointParameter Name="q0.1" Size="32" Integral="0" Fractional="1"/> 11 <FixedPointParameter Name="q0.2" Size="32" Integral="0" Fractional="2"/> 12 <FixedPointParameter Name="q0.3" Size="32" Integral="0" Fractional="3"/> 13 <FixedPointParameter Name="q0.4" Size="32" Integral="0" Fractional="4"/> 14 <FixedPointParameter Name="q0.5" Size="32" Integral="0" Fractional="5"/> 15 <FixedPointParameter Name="q0.6" Size="32" Integral="0" Fractional="6"/> 16 <FixedPointParameter Name="q0.7" Size="32" Integral="0" Fractional="7"/> 17 <FixedPointParameter Name="q0.8" Size="32" Integral="0" Fractional="8"/> 18 <FixedPointParameter Name="q0.9" Size="32" Integral="0" Fractional="9"/> [all …]
|
/external/ms-tpm-20-ref/TPMCmd/tpm/include/ |
D | TableMarshalDefines.h | 612 #define UINT8_Unmarshal(target, buffer, size) \ argument 613 Unmarshal(UINT8_MARSHAL_REF, (target), (buffer), (size)) 614 #define UINT8_Marshal(source, buffer, size) \ argument 615 Marshal(UINT8_MARSHAL_REF, (source), (buffer), (size)) 616 #define BYTE_Unmarshal(target, buffer, size) \ argument 617 Unmarshal(UINT8_MARSHAL_REF, (target), (buffer), (size)) 618 #define BYTE_Marshal(source, buffer, size) \ argument 619 Marshal(UINT8_MARSHAL_REF, (source), (buffer), (size)) 620 #define INT8_Unmarshal(target, buffer, size) \ argument 621 Unmarshal(INT8_MARSHAL_REF, (target), (buffer), (size)) [all …]
|
/external/deqp/framework/common/ |
D | tcuVector.hpp | 36 template <typename T, int VecSize, int Size> 44 VecAccess& operator= (const Vector<T, Size>& v); 46 operator Vector<T, Size> (void) const; 50 int m_index[Size]; 53 template <typename T, int VecSize, int Size> 54 VecAccess<T, VecSize, Size>::VecAccess (Vector<T, VecSize>& v, int x, int y) in VecAccess() 57 DE_STATIC_ASSERT(Size == 2); in VecAccess() 62 template <typename T, int VecSize, int Size> 63 VecAccess<T, VecSize, Size>::VecAccess (Vector<T, VecSize>& v, int x, int y, int z) in VecAccess() 66 DE_STATIC_ASSERT(Size == 3); in VecAccess() [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_bigmem.py | 21 # (approximate) bytes per size-unit the test will use (at peak usage), and a 22 # 'minsize' indicator declaring a minimum *useful* size. A test that 25 # test wouldn't be very useful) and a memuse of 1 (one byte per size-unit, 30 # always pass minsize as size, even if there is much more memory available. 31 # The bigmemtest decorator will scale size upward to fill available memory. 42 # due to its size. To make sure whether a result has the right contents, 56 # passed-in 'size', and don't rely on the size being very large. Also, 57 # memuse-per-size should remain sane (less than a few thousand); if your 58 # test uses more, adjust 'size' upward, instead. 72 def _test_capitalize(self, size): argument [all …]
|
/external/ms-tpm-20-ref/TPMCmd/tpm/include/prototypes/ |
D | Marshal_fp.h | 46 UINT8_Unmarshal(UINT8 *target, BYTE **buffer, INT32 *size); 48 UINT8_Marshal(UINT8 *source, BYTE **buffer, INT32 *size); 53 BYTE_Unmarshal(BYTE *target, BYTE **buffer, INT32 *size); 55 #define BYTE_Unmarshal(target, buffer, size) \ argument 56 UINT8_Unmarshal((UINT8 *)(target), (buffer), (size)) 60 BYTE_Marshal(BYTE *source, BYTE **buffer, INT32 *size); 62 #define BYTE_Marshal(source, buffer, size) \ argument 63 UINT8_Marshal((UINT8 *)(source), (buffer), (size)) 69 INT8_Unmarshal(INT8 *target, BYTE **buffer, INT32 *size); 71 #define INT8_Unmarshal(target, buffer, size) \ argument [all …]
|
/external/OpenCSD/decoder/tests/snapshots/a55-test-tpiu/ |
D | device1.ini | 7 X0(size:64)=0x00000000002971C8 key 8 X1(size:64)=0x00000000910163E0 key 9 X2(size:64)=0x00000000FFD0C1C4 key 10 X3(size:64)=0x0000000000345000 key 11 X4(size:64)=0x0000000000000004 key 12 X5(size:64)=0x00000000FC01EB50 key 13 X6(size:64)=0x00000000FC01EB4C key 14 X7(size:64)=0x0000000000000000 key 15 X8(size:64)=0x00000000FC01E9C8 key 16 X9(size:64)=0xFFFFFFFFFFFFFFFF key [all …]
|
/external/OpenCSD/decoder/tests/snapshots/a57_single_step/ |
D | device1.ini | 7 X0(size:64)=0x00000000002971C8 key 8 X1(size:64)=0x00000000910163E0 key 9 X2(size:64)=0x00000000FFD0C1C4 key 10 X3(size:64)=0x0000000000345000 key 11 X4(size:64)=0x0000000000000004 key 12 X5(size:64)=0x00000000FC01EB50 key 13 X6(size:64)=0x00000000FC01EB4C key 14 X7(size:64)=0x0000000000000000 key 15 X8(size:64)=0x00000000FC01E9C8 key 16 X9(size:64)=0xFFFFFFFFFFFFFFFF key [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_bigmem.py | 18 # its size. To make sure whether a result has the right contents, better 32 # passed-in 'size', and don't rely on the size being very large. Also, 33 # memuse-per-size should remain sane (less than a few thousand); if your 34 # test uses more, adjust 'size' upward, instead. 43 def test_capitalize(self, size): argument 45 s = '-' * size + SUBSTR 52 def test_center(self, size): argument 54 s = SUBSTR.center(size) 55 self.assertEqual(len(s), size) 63 @precisionbigmemtest(size=_2G - 1, memuse=character_size) [all …]
|
/external/boringssl/src/third_party/wycheproof_testvectors/ |
D | hkdf_sha256_test.txt | 16 size = 42 25 size = 42 37 size = 82 47 size = 20 56 size = 42 65 size = 64 74 size = 20 83 size = 42 92 size = 64 101 size = 20 [all …]
|
D | hkdf_sha384_test.txt | 15 size = 20 24 size = 42 33 size = 64 42 size = 20 51 size = 42 60 size = 64 69 size = 20 77 size = 42 85 size = 64 93 size = 20 [all …]
|
D | hkdf_sha512_test.txt | 15 size = 20 24 size = 42 33 size = 64 42 size = 20 51 size = 42 60 size = 64 69 size = 20 77 size = 42 85 size = 64 93 size = 20 [all …]
|
D | hkdf_sha1_test.txt | 16 size = 42 27 size = 82 38 size = 42 48 size = 42 59 size = 20 68 size = 42 77 size = 64 86 size = 20 95 size = 42 104 size = 64 [all …]
|
/external/ms-tpm-20-ref/TPMCmd/tpm/src/support/ |
D | Marshal.c | 47 UINT8_Unmarshal(UINT8 *target, BYTE **buffer, INT32 *size) in UINT8_Unmarshal() argument 49 if((*size -= 1) < 0) in UINT8_Unmarshal() 56 UINT8_Marshal(UINT8 *source, BYTE **buffer, INT32 *size) in UINT8_Marshal() argument 60 if ((size == 0) || ((*size -= 1) >= 0)) in UINT8_Marshal() 65 pAssert(size == 0 || (*size >= 0)); in UINT8_Marshal() 73 BYTE_Unmarshal(BYTE *target, BYTE **buffer, INT32 *size) in BYTE_Unmarshal() argument 75 return UINT8_Unmarshal((UINT8 *)target, buffer, size); in BYTE_Unmarshal() 78 BYTE_Marshal(BYTE *source, BYTE **buffer, INT32 *size) in BYTE_Marshal() argument 80 return UINT8_Marshal((UINT8 *)source, buffer, size); in BYTE_Marshal() 87 INT8_Unmarshal(INT8 *target, BYTE **buffer, INT32 *size) in INT8_Unmarshal() argument [all …]
|
/external/mesa3d/src/broadcom/cle/ |
D | v3d_packet_v33.xml | 326 <field name="Block count" size="8" start="0" type="uint"/> 330 <field name="address" size="32" start="0" type="address"/> 334 <field name="address" size="32" start="0" type="address"/> 338 <field name="address" size="32" start="0" type="address"/> 345 <field name="start" size="32" start="0" type="address"/> 346 <field name="end" size="32" start="32" type="address"/> 350 <field name="tile list set number" size="8" start="0" type="uint"/> 354 …<field name="Absolute address of explicit supertile render list" size="32" start="24" type="addres… 355 <field name="explicit supertile number" size="8" start="16" type="uint"/> 356 <field name="row number" size="8" start="8" type="uint"/> [all …]
|
D | v3d_packet_v21.xml | 32 <field name="Address" size="32" start="0" type="address"/> 35 <field name="Address" size="32" start="0" type="address"/> 43 <field name="Address" size="28" start="4" type="address"/> 44 <field name="Last Tile" size="1" start="3" type="bool"/> 45 <field name="Disable Clear on Write" size="1" start="2" type="bool"/> 46 <field name="Disable Z/Stencil Buffer write" size="1" start="1" type="bool"/> 47 <field name="Disable Color Buffer write" size="1" start="0" type="bool"/> 51 <field name="Address" size="28" start="4" type="address"/> 52 <field name="Disable Z/Stencil Buffer read" size="1" start="1" type="bool"/> 53 <field name="Disable Color Buffer read" size="1" start="0" type="bool"/> [all …]
|
/external/mesa3d/src/panfrost/lib/ |
D | midgard.xml | 361 <field name="RGB Component Order" size="8" start="0" type="RGB Component Order"/> 362 <field name="YUV Component Order" size="3" start="0" type="YUV Swizzle"/> 363 <field name="YUV Component Swap" size="1" start="3" type="bool"/> 364 <field name="YUV Cr Siting" size="3" start="0" type="YUV Cr Siting"/> 365 <field name="Swizzle" size="12" start="0" type="uint"/> 366 <field name="Format" size="8" start="12" type="Format"/> 367 <field name="sRGB" size="1" start="20" type="bool"/> 368 <field name="Big Endian" size="1" start="21" type="bool"/> 460 <field name="Buffer index" size="9" start="0" type="uint"/> 461 <field name="Offset enable" size="1" start="9" type="bool" default="true"/> [all …]
|
/external/llvm-project/llvm/test/CodeGen/AMDGPU/ |
D | reqd-work-group-size.ll | 9 %gep.group.size.x = getelementptr inbounds i8, i8 addrspace(4)* %dispatch.ptr, i64 4 10 %gep.group.size.x.bc = bitcast i8 addrspace(4)* %gep.group.size.x to i16 addrspace(4)* 11 %group.size.x = load i16, i16 addrspace(4)* %gep.group.size.x.bc, align 4 12 store i16 %group.size.x, i16 addrspace(1)* %out 20 %gep.group.size.x = getelementptr inbounds i8, i8 addrspace(4)* %dispatch.ptr, i64 4 21 %gep.group.size.x.bc = bitcast i8 addrspace(4)* %gep.group.size.x to i16 addrspace(4)* 22 %group.size.x = load volatile i16, i16 addrspace(4)* %gep.group.size.x.bc, align 4 23 store i16 %group.size.x, i16 addrspace(1)* %out 31 %gep.group.size.x = getelementptr inbounds i8, i8 addrspace(4)* %dispatch.ptr, i64 4 32 %gep.group.size.x.bc = bitcast i8 addrspace(4)* %gep.group.size.x to i16 addrspace(4)* [all …]
|
/external/elfutils/tests/ |
D | run-elfputzdata.sh | 45 Lets compress 22 .sbss, size: 0 47 Lets compress 24 .stab, size: 21540 48 Lets compress 25 .stabstr, size: 57297 49 Lets compress 26 .comment, size: 648 50 Lets compress 27 .debug_aranges, size: 56 51 Lets compress 28 .debug_pubnames, size: 93 52 Lets compress 29 .debug_info, size: 960 53 Lets compress 30 .debug_abbrev, size: 405 54 Lets compress 31 .debug_line, size: 189 55 Lets compress 32 .note, size: 240 [all …]
|
/external/swiftshader/third_party/subzero/unittest/AssemblerX8632/ |
D | GPRArith.cpp | 326 #define TestImplRegReg(Dst, Value0, Src, Value1, Size) \ in TEST_F() argument 330 "(" #Dst ", " #Value0 ", " #Src ", " #Value1 ", " #Size ")"; \ in TEST_F() 334 __ mov(IceType_i##Size, GPRRegister::Encoded_Reg_##Dst, \ in TEST_F() 336 __ mov(IceType_i##Size, GPRRegister::Encoded_Reg_##Src, \ in TEST_F() 338 __ test(IceType_i##Size, GPRRegister::Encoded_Reg_##Dst, \ in TEST_F() 351 ASSERT_EQ(((Value0)&Mask##Size) & ((Value1)&Mask##Size) ? ValueIfTrue \ in TEST_F() 358 #define TestImplRegImm(Dst, Value0, Imm, Size) \ in TEST_F() argument 362 "(" #Dst ", " #Value0 ", " #Imm ", " #Size ")"; \ in TEST_F() 366 __ mov(IceType_i##Size, GPRRegister::Encoded_Reg_##Dst, \ in TEST_F() 368 __ test(IceType_i##Size, GPRRegister::Encoded_Reg_##Dst, \ in TEST_F() [all …]
|
/external/proguard/src/proguard/util/ |
D | ArrayUtil.java | 35 * @param size the size of the arrays to be checked. 38 public static boolean equal(byte[] array1, byte[] array2, int size) in equal() argument 40 for (int index = 0; index < size; index++) in equal() 56 * @param size the size of the arrays to be checked. 59 public static boolean equal(short[] array1, short[] array2, int size) in equal() argument 61 for (int index = 0; index < size; index++) in equal() 77 * @param size the size of the arrays to be checked. 80 public static boolean equal(int[] array1, int[] array2, int size) in equal() argument 82 for (int index = 0; index < size; index++) in equal() 98 * @param size the size of the arrays to be checked. [all …]
|
/external/cpuinfo/test/ |
D | arm-cache.cc | 26 EXPECT_EQ(32 * 1024, l1i.size); in TEST() 27 EXPECT_EQ(32 * 1024, l1d.size); in TEST() 28 EXPECT_EQ(512 * 1024, l2.size); in TEST() 29 EXPECT_EQ(0, l3.size); in TEST() 47 EXPECT_EQ(32 * 1024, l1i.size); in TEST() 48 EXPECT_EQ(32 * 1024, l1d.size); in TEST() 49 EXPECT_EQ(512 * 1024, l2.size); in TEST() 50 EXPECT_EQ(0, l3.size); in TEST() 69 EXPECT_EQ(32 * 1024, l1i.size); in TEST() 70 EXPECT_EQ(32 * 1024, l1d.size); in TEST() [all …]
|
/external/testng/doc/ |
D | book-toc.html | 11 ….1_1"><b>Page 1</b></a></font></td></tr></table><font size="3" face="Times"><span style="font-size… 14 <font size="6" face="Times"><span style="font-size:48px;font-family:Times"> 18 <font size="8" face="Times"><span style="font-size:12px;font-family:Times"> 29 <font size="8" face="Times"><span style="font-size:16px;font-family:Times"> 34 <font size="8" face="Times"><span style="font-size:12px;font-family:Times"> 39 <font size="8" face="Times"><span style="font-size:11px;font-family:Times"> 42 <font size="8" face="Times"><span style="font-size:12px;font-family:Times"> 45 <font size="8" face="Times"><span style="font-size:11px;font-family:Times"> 48 <font size="8" face="Times"><span style="font-size:12px;font-family:Times"> 51 <font size="8" face="Times"><span style="font-size:11px;font-family:Times"> [all …]
|
/external/swiftshader/third_party/subzero/unittest/AssemblerX8664/ |
D | GPRArith.cpp | 362 #define TestImplRegReg(Dst, Value0, Src, Value1, Size) \ in TEST_F() argument 366 "(" #Dst ", " #Value0 ", " #Src ", " #Value1 ", " #Size ")"; \ in TEST_F() 370 __ mov(IceType_i##Size, Encoded_GPR_##Dst(), Immediate(Value0)); \ in TEST_F() 371 __ mov(IceType_i##Size, Encoded_GPR_##Src(), Immediate(Value1)); \ in TEST_F() 372 __ test(IceType_i##Size, Encoded_GPR_##Dst(), Encoded_GPR_##Src()); \ in TEST_F() 382 ASSERT_EQ(((Value0)&Mask##Size) & ((Value1)&Mask##Size) ? ValueIfTrue \ in TEST_F() 389 #define TestImplRegImm(Dst, Value0, Imm, Size) \ in TEST_F() argument 393 "(" #Dst ", " #Value0 ", " #Imm ", " #Size ")"; \ in TEST_F() 397 __ mov(IceType_i##Size, Encoded_GPR_##Dst(), Immediate(Value0)); \ in TEST_F() 398 __ test(IceType_i##Size, Encoded_GPR_##Dst(), \ in TEST_F() [all …]
|
/external/eigen/doc/snippets/ |
D | Tutorial_AdvancedInitialization_ThreeWays.cpp | 1 const int size = 6; variable 2 MatrixXd mat1(size, size); 3 mat1.topLeftCorner(size/2, size/2) = MatrixXd::Zero(size/2, size/2); 4 mat1.topRightCorner(size/2, size/2) = MatrixXd::Identity(size/2, size/2); 5 mat1.bottomLeftCorner(size/2, size/2) = MatrixXd::Identity(size/2, size/2); 6 mat1.bottomRightCorner(size/2, size/2) = MatrixXd::Zero(size/2, size/2); 9 MatrixXd mat2(size, size); 10 mat2.topLeftCorner(size/2, size/2).setZero(); 11 mat2.topRightCorner(size/2, size/2).setIdentity(); 12 mat2.bottomLeftCorner(size/2, size/2).setIdentity(); [all …]
|
/external/rust/crates/plotters/src/element/ |
D | points.rs | 7 pub trait PointElement<Coord, Size: SizeDesc> { 8 fn make_point(pos: Coord, size: Size, style: ShapeStyle) -> Self; in make_point() argument 12 pub struct Cross<Coord, Size: SizeDesc> { 14 size: Size, field 18 impl<Coord, Size: SizeDesc> Cross<Coord, Size> { 19 pub fn new<T: Into<ShapeStyle>>(coord: Coord, size: Size, style: T) -> Self { in new() argument 22 size, in new() 28 impl<'a, Coord: 'a, Size: SizeDesc> PointCollection<'a, Coord> for &'a Cross<Coord, Size> { 36 impl<Coord, DB: DrawingBackend, Size: SizeDesc> Drawable<DB> for Cross<Coord, Size> { 44 let size = self.size.in_pixels(&ps); in draw() localVariable [all …]
|