/frameworks/libs/net/common/tests/unit/src/com/android/net/module/util/ |
D | StructTest.java | 86 final ByteOrder order) { in doParsingMessageTest() argument 88 buf.order(order); in doParsingMessageTest() 96 @Field(order = 0, type = Type.U8, padding = 1) 98 @Field(order = 1, type = Type.U16) 100 @Field(order = 2, type = Type.S32) 102 @Field(order = 3, type = Type.U8) 104 @Field(order = 4, type = Type.U8, padding = 6) 140 @Field(order = 0, type = Type.U8, padding = 1) 142 @Field(order = 1, type = Type.U16) 144 @Field(order = 2, type = Type.S32) [all …]
|
/frameworks/rs/cpu_ref/ |
D | rsCpuBLASDispatch.h | 24 typedef void (*FnPtr_cblas_sgemv)(const enum CBLAS_ORDER order, 29 typedef void (*FnPtr_cblas_sgbmv)(const enum CBLAS_ORDER order, 34 typedef void (*FnPtr_cblas_strmv)(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, 38 typedef void (*FnPtr_cblas_stbmv)(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, 42 typedef void (*FnPtr_cblas_stpmv)(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, 45 typedef void (*FnPtr_cblas_strsv)(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, 49 typedef void (*FnPtr_cblas_stbsv)(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, 53 typedef void (*FnPtr_cblas_stpsv)(const enum CBLAS_ORDER order, const enum CBLAS_UPLO Uplo, 57 typedef void (*FnPtr_cblas_dgemv)(const enum CBLAS_ORDER order, 62 typedef void (*FnPtr_cblas_dgbmv)(const enum CBLAS_ORDER order, [all …]
|
/frameworks/libs/net/common/device/com/android/net/module/util/netlink/ |
D | StructNlAttr.java | 65 final ByteOrder originalOrder = byteBuffer.order(); in peek() 66 byteBuffer.order(ByteOrder.nativeOrder()); in peek() 71 byteBuffer.order(originalOrder); in peek() 151 public StructNlAttr(short type, short value, ByteOrder order) { in StructNlAttr() argument 155 final ByteOrder originalOrder = buf.order(); in StructNlAttr() 157 buf.order(order); in StructNlAttr() 160 buf.order(originalOrder); in StructNlAttr() 168 public StructNlAttr(short type, int value, ByteOrder order) { in StructNlAttr() argument 172 final ByteOrder originalOrder = buf.order(); in StructNlAttr() 174 buf.order(order); in StructNlAttr() [all …]
|
D | StructRtMsg.java | 41 @Field(order = 0, type = Type.U8) 43 @Field(order = 1, type = Type.U8) 45 @Field(order = 2, type = Type.U8) 47 @Field(order = 3, type = Type.U8) 49 @Field(order = 4, type = Type.U8) 51 @Field(order = 5, type = Type.U8) 53 @Field(order = 6, type = Type.U8) 55 @Field(order = 7, type = Type.U8) 57 @Field(order = 8, type = Type.U32)
|
D | StructNfGenMsg.java | 58 final ByteOrder originalOrder = byteBuffer.order(); in parse() 59 byteBuffer.order(ByteOrder.BIG_ENDIAN); in parse() 61 byteBuffer.order(originalOrder); in parse() 85 final ByteOrder originalOrder = byteBuffer.order(); in pack() 86 byteBuffer.order(ByteOrder.BIG_ENDIAN); in pack() 88 byteBuffer.order(originalOrder); in pack()
|
D | StructIfinfoMsg.java | 41 @Field(order = 0, type = Type.U8, padding = 1) 43 @Field(order = 1, type = Type.U16) 45 @Field(order = 2, type = Type.S32) 47 @Field(order = 3, type = Type.U32) 49 @Field(order = 4, type = Type.U32)
|
D | StructIfaddrMsg.java | 41 @Field(order = 0, type = Type.U8) 43 @Field(order = 1, type = Type.U8) 45 @Field(order = 2, type = Type.U8) 47 @Field(order = 3, type = Type.U8) 49 @Field(order = 4, type = Type.S32)
|
/frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/util/ |
D | ChoreographerCallbacksTest.java | 59 ArrayList<Integer> order = new ArrayList<>(); in testAddAndExecuteInOrder() local 61 callbacks.add((Runnable) () -> order.add(2), 200); in testAddAndExecuteInOrder() 62 callbacks.add((FrameCallback) frameTimeNanos -> order.add(1), 100); in testAddAndExecuteInOrder() 65 Assert.assertArrayEquals(order.toArray(), new Object[] { 1, 2 }); in testAddAndExecuteInOrder() 72 ArrayList<Integer> order = new ArrayList<>(); in testAddAndExecuteOnlyDue() local 74 callbacks.add((Runnable) () -> order.add(2), 200); in testAddAndExecuteOnlyDue() 75 callbacks.add((FrameCallback) frameTimeNanos -> order.add(1), 100); in testAddAndExecuteOnlyDue() 78 Assert.assertArrayEquals(order.toArray(), new Object[] { 1 }); in testAddAndExecuteOnlyDue() 85 ArrayList<Integer> order = new ArrayList<>(); in testRemove() local 87 Runnable runnable = () -> order.add(2); in testRemove() [all …]
|
/frameworks/libs/net/common/device/com/android/net/module/util/structs/ |
D | Ipv4Header.java | 50 @Field(order = 0, type = Type.S8) 53 @Field(order = 1, type = Type.S8) 55 @Field(order = 2, type = Type.U16) 57 @Field(order = 3, type = Type.S16) 59 @Field(order = 4, type = Type.S16) 62 @Field(order = 5, type = Type.U8) 64 @Field(order = 6, type = Type.S8) 66 @Field(order = 7, type = Type.S16) 68 @Field(order = 8, type = Type.Ipv4Address) 70 @Field(order = 9, type = Type.Ipv4Address)
|
D | TcpHeader.java | 48 @Field(order = 0, type = Type.U16) 50 @Field(order = 1, type = Type.U16) 52 @Field(order = 2, type = Type.U32) 54 @Field(order = 3, type = Type.U32) 56 @Field(order = 4, type = Type.S16) 60 @Field(order = 5, type = Type.U16) 62 @Field(order = 6, type = Type.S16) 64 @Field(order = 7, type = Type.U16)
|
D | PrefixInformationOption.java | 56 @Field(order = 0, type = Type.S8) 58 @Field(order = 1, type = Type.S8) 60 @Field(order = 2, type = Type.S8) 62 @Field(order = 3, type = Type.S8) 65 @Field(order = 4, type = Type.U32) 67 @Field(order = 5, type = Type.U32) 69 @Field(order = 6, type = Type.S32) 71 @Field(order = 7, type = Type.ByteArray, arraysize = 16)
|
D | Ipv6Header.java | 53 @Field(order = 0, type = Type.S32) 55 @Field(order = 1, type = Type.U16) 57 @Field(order = 2, type = Type.S8) 59 @Field(order = 3, type = Type.U8) 61 @Field(order = 4, type = Type.Ipv6Address) 63 @Field(order = 5, type = Type.Ipv6Address)
|
D | RaHeader.java | 42 @Field(order = 0, type = Type.S8) 45 @Field(order = 1, type = Type.S8) 47 @Field(order = 2, type = Type.U16) 49 @Field(order = 3, type = Type.U32) 51 @Field(order = 4, type = Type.U32)
|
D | UdpHeader.java | 37 @Field(order = 0, type = Type.U16) 39 @Field(order = 1, type = Type.U16) 41 @Field(order = 2, type = Type.U16) 43 @Field(order = 3, type = Type.S16)
|
/frameworks/libs/net/common/device/com/android/net/module/util/bpf/ |
D | Tether4Value.java | 33 @Field(order = 0, type = Type.U32) 37 @Field(order = 1, type = Type.EUI48) 39 @Field(order = 2, type = Type.EUI48) 41 @Field(order = 3, type = Type.UBE16) 44 @Field(order = 4, type = Type.U16) 47 @Field(order = 5, type = Type.ByteArray, arraysize = 16) 50 @Field(order = 6, type = Type.ByteArray, arraysize = 16) 53 @Field(order = 7, type = Type.UBE16) 56 @Field(order = 8, type = Type.UBE16) 60 @Field(order = 9, type = Type.U63)
|
D | Tether4Key.java | 33 @Field(order = 0, type = Type.U32) 36 @Field(order = 1, type = Type.EUI48) 39 @Field(order = 2, type = Type.U8, padding = 1) 42 @Field(order = 3, type = Type.ByteArray, arraysize = 4) 45 @Field(order = 4, type = Type.ByteArray, arraysize = 4) 48 @Field(order = 5, type = Type.UBE16) 51 @Field(order = 6, type = Type.UBE16)
|
D | TetherStatsValue.java | 28 @Field(order = 0, type = Type.U63) 30 @Field(order = 1, type = Type.U63) 32 @Field(order = 2, type = Type.U63) 34 @Field(order = 3, type = Type.U63) 36 @Field(order = 4, type = Type.U63) 38 @Field(order = 5, type = Type.U63)
|
D | ClatEgress4Value.java | 27 @Field(order = 0, type = Type.U32) 30 @Field(order = 1, type = Type.Ipv6Address) 33 @Field(order = 2, type = Type.Ipv6Address) 36 @Field(order = 3, type = Type.U8, padding = 3)
|
/frameworks/libs/net/common/device/com/android/net/module/util/ |
D | Struct.java | 143 int order(); in order() method 298 boolean reverseBytes = (type == Type.U64 && buf.order() == ByteOrder.LITTLE_ENDIAN); in readBigInteger() 332 private static byte[] bigIntegerToU64Bytes(final BigInteger bigInteger, final ByteOrder order, in bigIntegerToU64Bytes() argument 337 if (type == Type.U64 && order == ByteOrder.LITTLE_ENDIAN) { in bigIntegerToU64Bytes() 378 if (buf.order() == ByteOrder.LITTLE_ENDIAN) { in getFieldValue() 385 if (buf.order() == ByteOrder.LITTLE_ENDIAN) { in getFieldValue() 392 if (buf.order() == ByteOrder.LITTLE_ENDIAN) { in getFieldValue() 458 output.put(bigIntegerToU64Bytes((BigInteger) value, output.order(), Type.U64)); in putFieldValue() 473 if (output.order() == ByteOrder.LITTLE_ENDIAN) { in putFieldValue() 480 if (output.order() == ByteOrder.LITTLE_ENDIAN) { in putFieldValue() [all …]
|
/frameworks/base/keystore/java/android/security/ |
D | AuthTokenUtils.java | 45 ByteBuffer.wrap(array, 1, 8).order(ByteOrder.nativeOrder()).getLong(); in toHardwareAuthToken() 49 ByteBuffer.wrap(array, 9, 8).order(ByteOrder.nativeOrder()).getLong(); in toHardwareAuthToken() 53 ByteBuffer.wrap(array, 17, 8).order(ByteOrder.nativeOrder()).getLong(); in toHardwareAuthToken() 59 ByteBuffer.wrap(array, 25, 4).order(ByteOrder.BIG_ENDIAN).getInt(); in toHardwareAuthToken() 63 ByteBuffer.wrap(array, 29, 8).order(ByteOrder.BIG_ENDIAN).getLong(); in toHardwareAuthToken()
|
/frameworks/base/services/core/java/com/android/server/pm/pkg/component/ |
D | ParsedMainComponentImpl.java | 47 private int order; field in ParsedMainComponentImpl 63 this.order = other.getOrder(); in ParsedMainComponentImpl() 98 dest.writeInt(this.order); in writeToParcel() 109 this.order = in.readInt(); in ParsedMainComponentImpl() 148 int order, in ParsedMainComponentImpl() argument 155 this.order = order; in ParsedMainComponentImpl() 184 return order; in getOrder() 212 order = value; in setOrder()
|
/frameworks/av/media/codecs/amrwb/enc/src/ |
D | az_isp.c | 66 Word32 i, j, nf, ip, order; in Az_isp() local 111 order = NC; in Az_isp() 113 ylow = Chebps2(xlow, coef, order); in Az_isp() 121 ylow = Chebps2(xlow, coef, order); in Az_isp() 128 ymid = Chebps2(xmid, coef, order); in Az_isp() 171 order = NC - 1; in Az_isp() 176 order = NC; in Az_isp() 178 ylow = Chebps2(xlow, coef, order); in Az_isp()
|
/frameworks/base/tools/aapt2/configuration/ |
D | ConfigurationParser_test.cpp | 68 <abi-group label="other" version-code-order="2"> 72 <abi-group label="arm" version-code-order="1"> 78 <screen-density-group label="large" version-code-order="2"> 83 <screen-density-group label="alldpi" version-code-order="1"> 93 <locale-group label="europe" version-code-order="1"> 99 <locale-group label="north-america" version-code-order="2"> 104 <locale-group label="all" version-code-order="-1"> 120 <gl-texture-group label="dxt1" version-code-order="2">
|
/frameworks/base/core/java/android/view/ |
D | Menu.java | 176 public MenuItem add(int groupId, int itemId, int order, CharSequence title); in add() argument 193 public MenuItem add(int groupId, int itemId, int order, @StringRes int titleRes); in add() argument 235 SubMenu addSubMenu(final int groupId, final int itemId, int order, final CharSequence title); in addSubMenu() argument 250 SubMenu addSubMenu(int groupId, int itemId, int order, @StringRes int titleRes); in addSubMenu() argument 303 public int addIntentOptions(int groupId, int itemId, int order, in addIntentOptions() argument
|
/frameworks/libs/net/common/tests/unit/src/com/android/net/module/util/netlink/ |
D | RtNetlinkRouteMessageTest.java | 95 byteBuffer.order(ByteOrder.LITTLE_ENDIAN); // For testing. in testParseRtmRouteMessage() 114 byteBuffer.order(ByteOrder.LITTLE_ENDIAN); // For testing. in testPackRtmNewRoute() 121 packBuffer.order(ByteOrder.LITTLE_ENDIAN); // For testing. in testPackRtmNewRoute() 136 byteBuffer.order(ByteOrder.LITTLE_ENDIAN); // For testing. in testTruncatedRtmNewRoute() 152 byteBuffer.order(ByteOrder.LITTLE_ENDIAN); // For testing. in testParseRtmRouteMessage_IPv4MappedIPv6Gateway() 169 byteBuffer.order(ByteOrder.LITTLE_ENDIAN); // For testing. in testParseRtmRouteMessage_IPv4MappedIPv6Destination() 187 byteBuffer.order(ByteOrder.LITTLE_ENDIAN); // For testing. in testParseMultipleRtmMessagesInOneByteBuffer() 205 byteBuffer.order(ByteOrder.LITTLE_ENDIAN); // For testing. in testToString()
|