HomeSort by relevance Sort by last modified time
    Searched defs:ws1 (Results 1 - 2 of 2) sorted by null

  /cts/tests/tests/os/src/android/os/cts/
WorkSourceTest.java 253 WorkSource ws1 = wsNew(lhs); local
255 ws1.add(ws2);
256 checkWorkSource("Add result", ws1, expected);
257 ws1 = wsNew(lhs);
258 WorkSource wsNewbs = wsAddReturningNewbs(ws1, ws2);
259 checkWorkSource("AddReturning result", ws1, expected);
261 ws1 = wsNew(lhs);
262 WorkSource[] res = wsSetReturningDiffs(ws1, ws2);
263 checkWorkSource("SetReturning result", ws1, rhs);
294 WorkSource ws1 = wsNew(lhs, lhsnames) local
412 WorkSource ws1 = wsNew(lhs); local
435 WorkSource ws1 = wsNew(lhs, lhsnames); local
455 WorkSource ws1 = wsNew(lhs, lhsnames); local
532 WorkSource ws1 = wsNew(uids, names); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
transform.c 472 Word32 ws1,ws2; local
500 ws1 = timeSignalSample * (*winPtr >> 16);
505 *outData0++ = (ws1 >> 2) - (ws2 >> 2);
517 ws1 = timeSignalSample * (*winPtr & 0xffff);
522 *outData0-- = -((ws1 >> 2) + (ws2 >> 2));
547 ws1 = timeSignalSample * (*winPtr >> 16);
551 *outData0++ = (ws1 >> 2) - (ws2 >> 2); /* shift 2 to avoid overflow next */
568 ws1 = timeSignalSample * (*winPtr & 0xffff);
572 *outData0-- = -((ws1 >> 2) + (ws2 >> 2)); /* shift 2 to avoid overflow next */
604 ws1 = timeSignalSample * (*winPtr >> 16)
    [all...]

Completed in 65 milliseconds