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

  /ndk/sources/android/support/src/musl-multibyte/
wcsrtombs.c 16 const wchar_t *ws2; local
20 for (n=0, ws2=*ws; *ws2; ws2++) {
21 if (*ws2 >= 0x80u) {
22 l = wcrtomb(buf, *ws2, 0);
  /cts/tests/tests/os/src/android/os/cts/
WorkSourceTest.java 254 WorkSource ws2 = wsNew(rhs); local
255 ws1.add(ws2);
258 WorkSource wsNewbs = wsAddReturningNewbs(ws1, ws2);
262 WorkSource[] res = wsSetReturningDiffs(ws1, ws2);
295 WorkSource ws2 = wsNew(rhs, rhsnames); local
296 ws1.add(ws2);
299 WorkSource wsNewbs = wsAddReturningNewbs(ws1, ws2);
303 WorkSource[] res = wsSetReturningDiffs(ws1, ws2);
413 WorkSource ws2 = wsNew(rhs); local
414 boolean diffres = ws1.remove(ws2);
436 WorkSource ws2 = wsNew(rhs, rhsnames); local
456 WorkSource ws2 = wsNew(rhs, rhsnames); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
transform.c 472 Word32 ws1,ws2; local
503 ws2 = timeSignalSample * (*winPtr & 0xffff);
506 *outData0++ = (ws1 >> 2) - (ws2 >> 2);
520 ws2 = timeSignalSample * (*winPtr >> 16);
523 *outData0-- = -((ws1 >> 2) + (ws2 >> 2));
550 ws2 = timeSignalSample * (*winPtr & 0xffff);
552 *outData0++ = (ws1 >> 2) - (ws2 >> 2); /* shift 2 to avoid overflow next */
571 ws2 = timeSignalSample * (*winPtr >> 16);
573 *outData0-- = -((ws1 >> 2) + (ws2 >> 2)); /* shift 2 to avoid overflow next */
607 ws2 = timeSignalSample * (*winPtr & 0xffff)
    [all...]

Completed in 252 milliseconds