/external/deqp/scripts/opengl/ |
D | gen_call_log_wrapper.py | 35 def pointer (size): argument 36 return lambda name: "getPointerStr(%s, %s)" % (name, size) 38 def enumPointer (group, size): argument 39 …numPointerStr(%(name)s, %(size)s, %(nameFunc)s)" % {"name": name, "size": size, "nameFunc": ("get%… 41 def booleanPointer (size): argument 42 return lambda name: "getBooleanPointerStr(%s, %s)" % (name, size) 90 "glDeleteBuffers": LogSpec({1: pointer(size = "n")}), 91 "glDeleteFramebuffers": LogSpec({1: pointer(size = "n")}), 92 "glDeleteQueries": LogSpec({1: pointer(size = "n")}), 93 "glDeleteRenderbuffers": LogSpec({1: pointer(size = "n")}), [all …]
|
/external/tpm2/ |
D | tpm_generated.h | 16 UINT16 uint8_t_Marshal(uint8_t* source, BYTE** buffer, INT32* size); 18 TPM_RC uint8_t_Unmarshal(uint8_t* target, BYTE** buffer, INT32* size); 20 UINT16 int8_t_Marshal(int8_t* source, BYTE** buffer, INT32* size); 22 TPM_RC int8_t_Unmarshal(int8_t* target, BYTE** buffer, INT32* size); 24 UINT16 uint16_t_Marshal(uint16_t* source, BYTE** buffer, INT32* size); 26 TPM_RC uint16_t_Unmarshal(uint16_t* target, BYTE** buffer, INT32* size); 28 UINT16 int16_t_Marshal(int16_t* source, BYTE** buffer, INT32* size); 30 TPM_RC int16_t_Unmarshal(int16_t* target, BYTE** buffer, INT32* size); 32 UINT16 uint32_t_Marshal(uint32_t* source, BYTE** buffer, INT32* size); 34 TPM_RC uint32_t_Unmarshal(uint32_t* target, BYTE** buffer, INT32* size); [all …]
|
D | tpm_generated.c | 9 UINT16 uint8_t_Marshal(uint8_t* source, BYTE** buffer, INT32* size) { in uint8_t_Marshal() argument 11 if (!size || *size < sizeof(uint8_t)) { in uint8_t_Marshal() 29 *size -= sizeof(uint8_t); in uint8_t_Marshal() 33 TPM_RC uint8_t_Unmarshal(uint8_t* target, BYTE** buffer, INT32* size) { in uint8_t_Unmarshal() argument 35 if (!size || *size < sizeof(uint8_t)) { in uint8_t_Unmarshal() 53 *size -= sizeof(uint8_t); in uint8_t_Unmarshal() 57 UINT16 int8_t_Marshal(int8_t* source, BYTE** buffer, INT32* size) { in int8_t_Marshal() argument 59 if (!size || *size < sizeof(int8_t)) { in int8_t_Marshal() 77 *size -= sizeof(int8_t); in int8_t_Marshal() 81 TPM_RC int8_t_Unmarshal(int8_t* target, BYTE** buffer, INT32* size) { in int8_t_Unmarshal() argument [all …]
|
D | MemoryLib.c | 31 UINT32 size, // IN: number of octets to moved in MemoryMove() argument 39 pAssert(size <= dSize); in MemoryMove() 42 dSize -= size; in MemoryMove() 43 if (p>q || (p+size <= q)) in MemoryMove() 45 while(size--) in MemoryMove() 52 p += size; in MemoryMove() 53 q += size; in MemoryMove() 55 while (size--) in MemoryMove() 75 UINT32 size // IN: size of bytes being compared in MemoryEqual() argument 84 for(; size > 0; size--) in MemoryEqual() [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/valgrind/none/tests/mips64/ |
D | extract_insert_bit_field.stdout.exp-mips64r2 | 2 ins :: in 0x0, in1 0x0, out 0x0, pos: 0, size: 1 3 ins :: in 0x0, in1 0xffffffffffffffff, out 0xfffffffffffffffe, pos: 0, size: 1 4 ins :: in 0x0, in1 0x98765432, out 0xffffffff98765432, pos: 0, size: 1 5 ins :: in 0x0, in1 0xffffffffff865421, out 0xffffffffff865420, pos: 0, size: 1 6 ins :: in 0xffffffffffffffff, in1 0x0, out 0x1, pos: 0, size: 1 7 ins :: in 0xffffffffffffffff, in1 0xffffffffffffffff, out 0xffffffffffffffff, pos: 0, size: 1 8 ins :: in 0xffffffffffffffff, in1 0x98765432, out 0xffffffff98765433, pos: 0, size: 1 9 ins :: in 0xffffffffffffffff, in1 0xffffffffff865421, out 0xffffffffff865421, pos: 0, size: 1 10 ins :: in 0x98765432, in1 0x0, out 0x0, pos: 0, size: 1 11 ins :: in 0x98765432, in1 0xffffffffffffffff, out 0xfffffffffffffffe, pos: 0, size: 1 [all …]
|
/external/proguard/src/proguard/util/ |
D | ArrayUtil.java | 38 public static boolean equal(byte[] array1, byte[] array2, int size) in equal() argument 40 for (int index = 0; index < size; index++) in equal() 59 public static boolean equal(short[] array1, short[] array2, int size) in equal() argument 61 for (int index = 0; index < size; index++) in equal() 80 public static boolean equal(int[] array1, int[] array2, int size) in equal() argument 82 for (int index = 0; index < size; index++) in equal() 101 public static boolean equal(Object[] array1, Object[] array2, int size) in equal() argument 103 for (int index = 0; index < size; index++) in equal() 137 public static boolean equalOrNull(Object[] array1, Object[] array2, int size) in equalOrNull() argument 141 equal(array1, array2, size); in equalOrNull() [all …]
|
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/data/tree_construction/ |
D | tests23.dat | 2 <p><font size=4><font color=red><font size=4><font size=4><font size=4><font size=4><font size=4><f… 13 | size="4" 17 | size="4" 19 | size="4" 21 | size="4" 23 | size="4" 25 | size="4" 32 | size="4" 34 | size="4" 36 | size="4" [all …]
|
/external/pcre/dist/sljit/ |
D | sljitExecAllocator.c | 84 static SLJIT_INLINE void* alloc_chunk(sljit_uw size) in alloc_chunk() argument 86 return VirtualAlloc(NULL, size, MEM_COMMIT | MEM_RESERVE, PAGE_EXECUTE_READWRITE); in alloc_chunk() 89 static SLJIT_INLINE void free_chunk(void* chunk, sljit_uw size) in free_chunk() argument 91 SLJIT_UNUSED_ARG(size); in free_chunk() 97 static SLJIT_INLINE void* alloc_chunk(sljit_uw size) in alloc_chunk() argument 102 retval = mmap(NULL, size, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_PRIVATE | MAP_ANON, -1, 0); in alloc_chunk() 108 retval = mmap(NULL, size, PROT_READ | PROT_WRITE | PROT_EXEC, MAP_PRIVATE, dev_zero, 0); in alloc_chunk() 114 static SLJIT_INLINE void free_chunk(void* chunk, sljit_uw size) in free_chunk() argument 116 munmap(chunk, size); in free_chunk() 128 sljit_uw size; member [all …]
|
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
D | ShortArray.java | 28 public int size; field in ShortArray 54 size = array.size; in ShortArray() 55 items = new short[size]; in ShortArray() 56 System.arraycopy(array.items, 0, items, 0, size); in ShortArray() 71 size = count; in ShortArray() 78 if (size == items.length) items = resize(Math.max(8, (int)(size * 1.75f))); in add() 79 items[size++] = (short)value; in add() 84 if (size == items.length) items = resize(Math.max(8, (int)(size * 1.75f))); in add() 85 items[size++] = value; in add() 89 addAll(array, 0, array.size); in addAll() [all …]
|
D | CharArray.java | 28 public int size; field in CharArray 54 size = array.size; in CharArray() 55 items = new char[size]; in CharArray() 56 System.arraycopy(array.items, 0, items, 0, size); in CharArray() 71 size = count; in CharArray() 77 if (size == items.length) items = resize(Math.max(8, (int)(size * 1.75f))); in add() 78 items[size++] = value; in add() 82 addAll(array, 0, array.size); in addAll() 86 if (offset + length > array.size) in addAll() 87 …mentException("offset + length must be <= size: " + offset + " + " + length + " <= " + array.size); in addAll() [all …]
|
D | ByteArray.java | 28 public int size; field in ByteArray 54 size = array.size; in ByteArray() 55 items = new byte[size]; in ByteArray() 56 System.arraycopy(array.items, 0, items, 0, size); in ByteArray() 71 size = count; in ByteArray() 77 if (size == items.length) items = resize(Math.max(8, (int)(size * 1.75f))); in add() 78 items[size++] = value; in add() 82 addAll(array, 0, array.size); in addAll() 86 if (offset + length > array.size) in addAll() 87 …mentException("offset + length must be <= size: " + offset + " + " + length + " <= " + array.size); in addAll() [all …]
|
D | IntArray.java | 28 public int size; field in IntArray 54 size = array.size; in IntArray() 55 items = new int[size]; in IntArray() 56 System.arraycopy(array.items, 0, items, 0, size); in IntArray() 71 size = count; in IntArray() 77 if (size == items.length) items = resize(Math.max(8, (int)(size * 1.75f))); in add() 78 items[size++] = value; in add() 82 addAll(array, 0, array.size); in addAll() 86 if (offset + length > array.size) in addAll() 87 …mentException("offset + length must be <= size: " + offset + " + " + length + " <= " + array.size); in addAll() [all …]
|
D | LongArray.java | 28 public int size; field in LongArray 54 size = array.size; in LongArray() 55 items = new long[size]; in LongArray() 56 System.arraycopy(array.items, 0, items, 0, size); in LongArray() 71 size = count; in LongArray() 77 if (size == items.length) items = resize(Math.max(8, (int)(size * 1.75f))); in add() 78 items[size++] = value; in add() 82 addAll(array, 0, array.size); in addAll() 86 if (offset + length > array.size) in addAll() 87 …mentException("offset + length must be <= size: " + offset + " + " + length + " <= " + array.size); in addAll() [all …]
|
D | BooleanArray.java | 30 public int size; field in BooleanArray 56 size = array.size; in BooleanArray() 57 items = new boolean[size]; in BooleanArray() 58 System.arraycopy(array.items, 0, items, 0, size); in BooleanArray() 73 size = count; in BooleanArray() 79 if (size == items.length) items = resize(Math.max(8, (int)(size * 1.75f))); in add() 80 items[size++] = value; in add() 84 addAll(array, 0, array.size); in addAll() 88 if (offset + length > array.size) in addAll() 89 …mentException("offset + length must be <= size: " + offset + " + " + length + " <= " + array.size); in addAll() [all …]
|
D | FloatArray.java | 28 public int size; field in FloatArray 54 size = array.size; in FloatArray() 55 items = new float[size]; in FloatArray() 56 System.arraycopy(array.items, 0, items, 0, size); in FloatArray() 71 size = count; in FloatArray() 77 if (size == items.length) items = resize(Math.max(8, (int)(size * 1.75f))); in add() 78 items[size++] = value; in add() 82 addAll(array, 0, array.size); in addAll() 86 if (offset + length > array.size) in addAll() 87 …mentException("offset + length must be <= size: " + offset + " + " + length + " <= " + array.size); in addAll() [all …]
|
/external/valgrind/coregrind/m_gdbserver/ |
D | valgrind-low-ppc32.c | 179 transfer_direction dir, int size, Bool *mod) in transfer_register() argument 191 case 0: VG_(transfer) (&ppc32->guest_GPR0, buf, dir, size, mod); break; in transfer_register() 192 case 1: VG_(transfer) (&ppc32->guest_GPR1, buf, dir, size, mod); break; in transfer_register() 193 case 2: VG_(transfer) (&ppc32->guest_GPR2, buf, dir, size, mod); break; in transfer_register() 194 case 3: VG_(transfer) (&ppc32->guest_GPR3, buf, dir, size, mod); break; in transfer_register() 195 case 4: VG_(transfer) (&ppc32->guest_GPR4, buf, dir, size, mod); break; in transfer_register() 196 case 5: VG_(transfer) (&ppc32->guest_GPR5, buf, dir, size, mod); break; in transfer_register() 197 case 6: VG_(transfer) (&ppc32->guest_GPR6, buf, dir, size, mod); break; in transfer_register() 198 case 7: VG_(transfer) (&ppc32->guest_GPR7, buf, dir, size, mod); break; in transfer_register() 199 case 8: VG_(transfer) (&ppc32->guest_GPR8, buf, dir, size, mod); break; in transfer_register() [all …]
|
D | valgrind-low-ppc64.c | 176 transfer_direction dir, int size, Bool *mod) in transfer_register() argument 188 case 0: VG_(transfer) (&ppc64->guest_GPR0, buf, dir, size, mod); break; in transfer_register() 189 case 1: VG_(transfer) (&ppc64->guest_GPR1, buf, dir, size, mod); break; in transfer_register() 190 case 2: VG_(transfer) (&ppc64->guest_GPR2, buf, dir, size, mod); break; in transfer_register() 191 case 3: VG_(transfer) (&ppc64->guest_GPR3, buf, dir, size, mod); break; in transfer_register() 192 case 4: VG_(transfer) (&ppc64->guest_GPR4, buf, dir, size, mod); break; in transfer_register() 193 case 5: VG_(transfer) (&ppc64->guest_GPR5, buf, dir, size, mod); break; in transfer_register() 194 case 6: VG_(transfer) (&ppc64->guest_GPR6, buf, dir, size, mod); break; in transfer_register() 195 case 7: VG_(transfer) (&ppc64->guest_GPR7, buf, dir, size, mod); break; in transfer_register() 196 case 8: VG_(transfer) (&ppc64->guest_GPR8, buf, dir, size, mod); break; in transfer_register() [all …]
|
/external/deqp/framework/referencerenderer/ |
D | rrVertexAttrib.cpp | 60 inline void readOrder (typename tcu::Vector<DstScalarType, 4>& dst, const int size, const void* ptr) in readOrder() argument 63 deMemcpy(aligned, ptr, size * sizeof(SrcScalarType)); in readOrder() 66 if (size >= 2) dst[Order::T1] = DstScalarType(aligned[1]); in readOrder() 67 if (size >= 3) dst[Order::T2] = DstScalarType(aligned[2]); in readOrder() 68 if (size >= 4) dst[Order::T3] = DstScalarType(aligned[3]); in readOrder() 72 inline void readUnormOrder (tcu::Vec4& dst, const int size, const void* ptr) in readUnormOrder() argument 77 deMemcpy(aligned, ptr, size * sizeof(SrcScalarType)); in readUnormOrder() 80 if (size >= 2) dst[Order::T1] = float(aligned[1]) / float(range); in readUnormOrder() 81 if (size >= 3) dst[Order::T2] = float(aligned[2]) / float(range); in readUnormOrder() 82 if (size >= 4) dst[Order::T3] = float(aligned[3]) / float(range); in readUnormOrder() [all …]
|
/external/elfutils/tests/ |
D | run-aggregate-size.sh | 68 c size 1 69 i size 4 70 l size 8 71 v size 8 72 s size 16 73 ca size 16 74 ia size 128 75 va size 512 76 sa size 128 80 c size 1 [all …]
|
/external/mesa3d/src/gallium/state_trackers/clover/api/ |
D | device.cpp | 56 *num_devices = devs.size(); in clGetDeviceIDs() 59 std::min((cl_uint)devs.size(), num_entries), in clGetDeviceIDs() 67 size_t size, void *buf, size_t *size_ret) { in clGetDeviceInfo() argument 73 return scalar_property<cl_device_type>(buf, size, size_ret, dev->type()); in clGetDeviceInfo() 76 return scalar_property<cl_uint>(buf, size, size_ret, dev->vendor_id()); in clGetDeviceInfo() 79 return scalar_property<cl_uint>(buf, size, size_ret, 1); in clGetDeviceInfo() 82 return scalar_property<cl_uint>(buf, size, size_ret, in clGetDeviceInfo() 83 dev->max_block_size().size()); in clGetDeviceInfo() 86 return vector_property<size_t>(buf, size, size_ret, in clGetDeviceInfo() 90 return scalar_property<size_t>(buf, size, size_ret, in clGetDeviceInfo() [all …]
|
/external/libgdx/tests/gdx-tests-android/assets/data/ |
D | tiles.txt | 8 size: 302, 238 15 size: 274, 391 22 size: 446, 362 29 size: 541, 258 36 size: 701, 534 43 size: 258, 248 50 size: 291, 289 57 size: 302, 238 64 size: 177, 234 71 size: 183, 160 [all …]
|
/external/opencv3/samples/gpu/performance/ |
D | tests.cpp | 70 for (int size = 2000; size <= 8000; size *= 2) in TEST() local 72 SUBTEST << size << 'x' << size << ", 32F"; in TEST() 74 gen(src, size, size, CV_32F, 0, 1); in TEST() 97 for (int size = 1000; size <= 4000; size *= 2) in TEST() local 99 SUBTEST << size << 'x' << size << ", 8UC4, INTER_LINEAR, BORDER_REPLICATE"; in TEST() 101 gen(src, size, size, CV_8UC4, 0, 256); in TEST() 103 xmap.create(size, size, CV_32F); in TEST() 104 ymap.create(size, size, CV_32F); in TEST() 105 for (int i = 0; i < size; ++i) in TEST() 109 for (int j = 0; j < size; ++j) in TEST() [all …]
|
/external/libgdx/tests/gdx-tests-android/assets/data/maps/tiled-atlas-processed/tileset/ |
D | packed.atlas | 3 size: 128,128 10 size: 16, 16 17 size: 16, 16 24 size: 16, 16 31 size: 16, 16 38 size: 16, 16 45 size: 16, 16 52 size: 16, 16 59 size: 16, 16 66 size: 16, 16 [all …]
|
/external/curl/tests/unit/ |
D | unit1302.c | 48 size_t size = 0; variable 52 rc = Curl_base64_encode(data, "i", 1, &output, &size); 54 fail_unless(size == 4, "size should be 4"); 58 rc = Curl_base64_encode(data, "ii", 2, &output, &size); 60 fail_unless(size == 4, "size should be 4"); 64 rc = Curl_base64_encode(data, "iii", 3, &output, &size); 66 fail_unless(size == 4, "size should be 4"); 70 rc = Curl_base64_encode(data, "iiii", 4, &output, &size); 72 fail_unless(size == 8, "size should be 8"); 76 rc = Curl_base64_encode(data, "\xff\x01\xfe\x02", 4, &output, &size); [all …]
|