Home
last modified time | relevance | path

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

/packages/modules/StatsD/statsd/tests/
DFieldValue_test.cpp234 int pos2[] = {1, 1, 2}; in TEST() local
238 Field field2(10, pos2, 2); in TEST()
397 int pos2[] = {1, 1, 2}; in TEST() local
403 Field field2(atomId, pos2, /*depth=*/2); in TEST()
448 int pos2[] = {1, 1, 2}; in TEST() local
452 Field field2(10, pos2, 2); in TEST()
510 int pos2[] = {1, 1, 2}; in TEST() local
514 Field field2(10, pos2, 2); in TEST()
772 int pos2[] = {1, 1, 2}; // attribution tag in TEST() local
779 Field field2(10, pos2, 2); in TEST()
Dmetadata_util_test.cpp31 int pos2[] = {1, 1, 2}; in TEST() local
35 Field field2(10, pos2, 2); in TEST()
Dstatsd_test_util.cpp648 int pos2[] = {2, 0, 0}; in getOverlayKey() local
651 Field field2(59 /* atom id */, pos2, 0 /* depth */); in getOverlayKey()
/packages/apps/Nfc/nci/jni/
DRouteDataSet.cpp55 std::string::size_type pos2 = aid.find_first_of(delimiter); in AidBuffer() local
61 if (pos2 == std::string::npos) { 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/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
70 buf[pos1 + i] = buf[pos2 + i]; in swapBytes()
71 buf[pos2 + i] = b; in swapBytes()