Home
last modified time | relevance | path

Searched refs:pos1 (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Nfc/nci/jni/
DRouteDataSet.cpp54 std::string::size_type pos1 = 0; in AidBuffer() local
62 sscanf(aid.substr(pos1).c_str(), "%x", &num); in AidBuffer()
67 sscanf(aid.substr(pos1, pos2 - pos1 + 1).c_str(), "%x", &num); in AidBuffer()
70 pos1 = pos2 + 1; in AidBuffer()
71 pos2 = aid.find_first_of(delimiter, pos1); in AidBuffer()
/packages/modules/StatsD/statsd/tests/
DFieldValue_test.cpp233 int pos1[] = {1, 1, 1}; in TEST() local
237 Field field1(10, pos1, 2); in TEST()
396 int pos1[] = {1, 1, 1}; in TEST() local
402 Field field1(atomId, pos1, /*depth=*/2); in TEST()
447 int pos1[] = {1, 1, 1}; in TEST() local
451 Field field1(10, pos1, 2); in TEST()
509 int pos1[] = {1, 1, 1}; in TEST() local
513 Field field1(10, pos1, 2); in TEST()
771 int pos1[] = {1, 1, 1}; // attribution uid in TEST() local
778 Field field1(10, pos1, 2); in TEST()
Dmetadata_util_test.cpp30 int pos1[] = {1, 1, 1}; in TEST() local
34 Field field1(10, pos1, 2); in TEST()
Dstatsd_test_util.cpp639 int pos1[] = {1, 0, 0}; in getUidProcessKey() local
640 Field field1(27 /* atom id */, pos1, 0 /* depth */); in getUidProcessKey()
647 int pos1[] = {1, 0, 0}; in getOverlayKey() local
650 Field field1(59 /* atom id */, pos1, 0 /* depth */); in getOverlayKey()
661 int pos1[] = {1, 1, 1}; in getPartialWakelockKey() local
665 Field field1(10 /* atom id */, pos1, 2 /* depth */); in getPartialWakelockKey()
680 int pos1[] = {1, 1, 1}; in getPartialWakelockKey() local
683 Field field1(10 /* atom id */, pos1, 2 /* depth */); in getPartialWakelockKey()
/packages/modules/Connectivity/tests/cts/hostside/app/src/com/android/cts/net/hostside/
DPacketReflector.java67 private static void swapBytes(byte[] buf, int pos1, int pos2, int len) { in swapBytes() argument
69 byte b = buf[pos1 + i]; in swapBytes()
70 buf[pos1 + i] = buf[pos2 + i]; in swapBytes()