HomeSort by relevance Sort by last modified time
    Searched refs:cw (Results 1 - 25 of 66) sorted by null

1 2 3

  /frameworks/base/media/libstagefright/codecs/aacdec/
decode_huff_cw_binary.cpp 40 (1) make cw sgined and change "if(cw&0x80000000)" to if(cw<0)
215 Int32 cw; local
217 cw = get17_n_lessbits(
220 if ((cw >> 10) == 0)
225 else if ((cw >> 6) <= 23)
227 tab = (cw >> 6) - 16;
229 else if ((cw >> 4) <= 119)
231 tab = (cw >> 4) - 96 + 8
253 Int32 cw; local
291 Int32 cw; local
333 Int32 cw; local
368 Int32 cw; local
412 Int32 cw; local
447 Int32 cw; local
487 Int32 cw; local
521 Int32 cw; local
571 Int32 cw; local
617 Int32 cw; local
663 Int32 cw; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_decode_huff_cw.cpp 62 cw = bit field extracted from a leaf entry of packed mp3 Huffman Tables
153 uint16 cw; local
157 cw = *(huffTable_1 + tmp);
158 pMainData->usedBits -= (3 - (cw & 0xFF));
159 return(cw >> 8);
170 uint16 cw; local
183 cw = *(huffTable_2 + tmp);
184 pMainData->usedBits -= (6 - (cw & 0xFF));
186 return(cw >> 8);
196 uint16 cw; local
222 uint16 cw; local
251 uint16 cw; local
280 uint16 cw; local
313 uint16 cw; local
346 uint16 cw; local
379 uint16 cw; local
424 uint16 cw; local
464 uint16 cw; local
505 uint16 cw; local
570 uint16 cw; local
615 uint16 cw; local
683 uint16 cw; local
742 uint16 cw = *(huffTable_32 + (tmp & 0x1f)); local
    [all...]
pvmp3_huffman_decoding.cpp 197 uint16 cw = (*h->pdec_huff_tab)(pMainData); local
202 if (cw)
204 x = cw >> 4;
212 y = cw & 0xf;
221 y = cw & 0xf;
251 uint16 cw; local
255 cw = (*h->pdec_huff_tab)(pMainData);
256 x = cw >> 4;
278 y = cw & 0xf;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
CharArrayWriterTest.java 29 CharArrayWriter cw; field in class:CharArrayWriterTest
37 cw = new CharArrayWriter(90);
38 assertEquals("Created incorrect writer", 0, cw.size());
45 cw = new CharArrayWriter();
46 assertEquals("Created incorrect writer", 0, cw.size());
53 cw.close();
60 cw.flush();
67 cw.write("HelloWorld", 5, 5);
68 cw.reset();
69 cw.write("HelloWorld", 0, 5)
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldCharArrayWriterTest.java 28 CharArrayWriter cw; field in class:OldCharArrayWriterTest
33 cw = new CharArrayWriter(90);
34 assertEquals("Test 1: Incorrect writer created.", 0, cw.size());
37 cw = new CharArrayWriter(-1);
46 cw = new CharArrayWriter();
48 cw.write(target, -1, 1);
54 cw.write(target, 0, -1);
60 cw.write(target, 1, target.length);
66 cw.write((char[]) null, 1, 1);
75 cw.write("HelloWorld", 0, 10)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
fpu_control.h 28 * (cw) register.
80 #define _FPU_RESERVED 0xF0C0 /* Reserved bits in cw */
95 #define _FPU_GETCW(cw) __asm__ ("fnstcw %0" : "=m" (*&cw))
96 #define _FPU_SETCW(cw) __asm__ ("fldcw %0" : : "m" (*&cw))
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfoAsyncQuery.java 132 CookieWrapper cw = (CookieWrapper) args.cookie; local
134 if (cw == null) {
146 if (DBG) Log.d(LOG_TAG, "Processing event: " + cw.event + " token (arg1): " + msg.arg1 +
149 switch (cw.event) {
205 CookieWrapper cw = (CookieWrapper) cookie; local
206 if (cw == null) {
215 if (cw.event == EVENT_END_OF_QUEUE) {
232 if (cw.event == EVENT_EMERGENCY_NUMBER) {
236 } else if (cw.event == EVENT_VOICEMAIL_NUMBER) {
243 mQueryContext, cw.number, mCallerInfo)
318 CookieWrapper cw = new CookieWrapper(); local
400 CookieWrapper cw = new CookieWrapper(); local
433 CookieWrapper cw = new CookieWrapper(); local
    [all...]
  /external/quake/quake/src/QW/client/
sys_dosa.s 38 .globl ceil_cw, single_cw, full_cw, cw, pushed_cw
42 cw: .long 0 label
74 fnstcw cw
75 movl cw,%eax
sys_wina.s 58 .globl ceil_cw, single_cw, full_cw, cw, pushed_cw
62 cw: .long 0 label
94 fnstcw cw
95 movl cw,%eax
  /external/quake/quake/src/WinQuake/
sys_dosa.s 38 .globl ceil_cw, single_cw, full_cw, cw, pushed_cw
42 cw: .long 0 label
74 fnstcw cw
75 movl cw,%eax
sys_wina.s 59 .globl ceil_cw, single_cw, full_cw, cw, pushed_cw
63 cw: .long 0 label
95 fnstcw cw
96 movl cw,%eax
  /development/tools/mkstubs/src/com/android/mkstubs/
StubGenerator.java 106 ClassWriter cw = new ClassWriter(ClassWriter.COMPUTE_MAXS); local
108 ClassVisitor stubWriter = new ClassStubber(cw);
111 return cw.toByteArray();
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
sigcontext32.h 26 __u32 cw; member in struct:_fpstate_ia32
sigcontext.h 38 unsigned long cw; member in struct:_fpstate
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/dvb/
ca.h 73 unsigned char cw[8]; member in struct:ca_descr
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
DelegateClassAdapterTest.java 86 ClassWriter cw = new ClassWriter(0 /*flags*/); local
91 mLog, cw, internalClassName, delegateMethods);
125 cl2.add(NATIVE_CLASS_NAME, cw);
141 ClassWriter cw = new ClassWriter(0 /*flags*/); local
148 mLog, cw, internalClassName, delegateMethods);
156 ClassWriter cw = new ClassWriter(0 /*flags*/); local
162 mLog, cw, internalClassName, delegateMethods);
193 cl2.add(NATIVE_CLASS_NAME, cw);
331 ClassWriter cw = new ClassWriter(0); local
332 cr.accept(cw, 0)
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/ui/
SwtBaseDialog.java 226 int cw = childSize.x; local
229 int x = px + (pw - cw) / 2;
236 child.setSize(cw, ch);
  /bionic/libc/kernel/arch-x86/asm/
sigcontext.h 37 unsigned long cw; member in struct:_fpstate
  /development/ndk/platforms/android-9/arch-x86/include/asm/
sigcontext.h 37 unsigned long cw; member in struct:_fpstate
  /external/kernel-headers/original/asm-x86/
sigcontext.h 39 unsigned long cw; member in struct:_fpstate
  /external/webp/src/dec/
buffer.c 129 const int cw = options->crop_width; local
133 if (x < 0 || y < 0 || cw <= 0 || ch <= 0 || x + cw > w || y + ch > h) {
136 w = cw;
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/
sigcontext.h 37 unsigned long cw; member in struct:_fpstate
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/
sigcontext.h 37 unsigned long cw; member in struct:_fpstate
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/asm/
sigcontext.h 37 unsigned long cw; member in struct:_fpstate
  /external/mesa3d/test/
image_file.h 267 const unsigned cw = (w + 1) / 2, ch = (h + 1) / 2; local
270 for (unsigned x = 0; x < cw; x++)
286 current[y * cw + x] = channels[0] | (channels[1] << 8) |
292 buffer += cw * ch;
293 w = cw;

Completed in 782 milliseconds

1 2 3