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
501 ws1 = timeSignalSample * (*winPtr >> 16);
506 *outData0++ = (ws1 >> 2) - (ws2 >> 2);
518 ws1 = timeSignalSample * (*winPtr & 0xffff);
523 *outData0-- = -((ws1 >> 2) + (ws2 >> 2));
548 ws1 = timeSignalSample * (*winPtr >> 16);
552 *outData0++ = (ws1 >> 2) - (ws2 >> 2); /* shift 2 to avoid overflow next */
569 ws1 = timeSignalSample * (*winPtr & 0xffff);
573 *outData0-- = -((ws1 >> 2) + (ws2 >> 2)); /* shift 2 to avoid overflow next */
605 ws1 = timeSignalSample * (*winPtr >> 16)
    [all...]

Completed in 199 milliseconds