/frameworks/av/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...] |
/external/chromium_org/chromeos/ime/ |
candidate_window.cc | 26 bool CandidateWindow::IsEqual(const CandidateWindow& cw) const { 27 if (page_size() != cw.page_size() || 28 cursor_position() != cw.cursor_position() || 29 is_cursor_visible() != cw.is_cursor_visible() || 30 orientation() != cw.orientation() || 31 show_window_at_composition() != cw.show_window_at_composition() || 32 candidates_.size() != cw.candidates_.size()) 37 const Entry& right = cw.candidates_[i]; 48 void CandidateWindow::CopyFrom(const CandidateWindow& cw) { 49 SetProperty(cw.GetProperty()) [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...] |
/prebuilts/gcc/linux-x86/host/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))
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/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))
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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))
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/ |
Base64.java | 22 CharArrayWriter cw = new CharArrayWriter((4 * content.length) / 3); local 41 cw.write(alphabet[x >> 18]); 42 cw.write(alphabet[(x >> 12) & 0x3f]); 43 cw.write(alphabet[(x >> 6) & 0x3f]); 44 cw.write(alphabet[x & 0x3f]); 52 cw.write(alphabet[x >> 18]); 53 cw.write(alphabet[(x >> 12) & 0x3f]); 54 cw.write('='); 55 cw.write('='); 60 cw.write(alphabet[x >> 18]) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/math/ |
m_clip_tmp.h | 62 const GLfloat cw = from[3]; local 66 mask = (((cw < cx) << CLIP_RIGHT_SHIFT)); 67 mask |= (((cw < -cx) << CLIP_LEFT_SHIFT)); 68 mask |= (((cw < cy) << CLIP_TOP_SHIFT)); 69 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT)); 71 mask |= (((cw < cz) << CLIP_FAR_SHIFT)); 72 mask |= (((cw < -cz) << CLIP_NEAR_SHIFT)); 76 if (-cx + cw < 0) mask |= CLIP_RIGHT_BIT; 77 if ( cx + cw < 0) mask |= CLIP_LEFT_BIT; 78 if (-cy + cw < 0) mask |= CLIP_TOP_BIT 142 const GLfloat cw = from[3]; local [all...] |
/external/mesa3d/src/mesa/math/ |
m_clip_tmp.h | 62 const GLfloat cw = from[3]; local 66 mask = (((cw < cx) << CLIP_RIGHT_SHIFT)); 67 mask |= (((cw < -cx) << CLIP_LEFT_SHIFT)); 68 mask |= (((cw < cy) << CLIP_TOP_SHIFT)); 69 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT)); 71 mask |= (((cw < cz) << CLIP_FAR_SHIFT)); 72 mask |= (((cw < -cz) << CLIP_NEAR_SHIFT)); 76 if (-cx + cw < 0) mask |= CLIP_RIGHT_BIT; 77 if ( cx + cw < 0) mask |= CLIP_LEFT_BIT; 78 if (-cy + cw < 0) mask |= CLIP_TOP_BIT 142 const GLfloat cw = from[3]; local [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/ |
CallerInfoAsyncQuery.java | 131 CookieWrapper cw = (CookieWrapper) args.cookie; local 133 if (cw == null) { 145 if (DBG) Rlog.d(LOG_TAG, "Processing event: " + cw.event + " token (arg1): " + msg.arg1 + 148 switch (cw.event) { 204 CookieWrapper cw = (CookieWrapper) cookie; local 205 if (cw == null) { 214 if (cw.event == EVENT_END_OF_QUEUE) { 231 if (cw.event == EVENT_EMERGENCY_NUMBER) { 235 } else if (cw.event == EVENT_VOICEMAIL_NUMBER) { 242 mQueryContext, cw.number, mCallerInfo) 315 CookieWrapper cw = new CookieWrapper(); local 397 CookieWrapper cw = new CookieWrapper(); local 430 CookieWrapper cw = new CookieWrapper(); local [all...] |
/packages/apps/InCallUI/src/com/android/incallui/ |
CallerInfoAsyncQuery.java | 128 CookieWrapper cw = (CookieWrapper) args.cookie; local 130 if (cw == null) { 142 Log.d(this, "Processing event: " + cw.event + " token (arg1): " + msg.arg1 + 146 switch (cw.event) { 202 CookieWrapper cw = (CookieWrapper) cookie; local 203 if (cw == null) { 212 if (cw.event == EVENT_END_OF_QUEUE) { 229 if (cw.event == EVENT_EMERGENCY_NUMBER) { 233 } else if (cw.event == EVENT_VOICEMAIL_NUMBER) { 240 mQueryContext, cw.number, mCallerInfo) 313 CookieWrapper cw = new CookieWrapper(); local 393 CookieWrapper cw = new CookieWrapper(); local 426 CookieWrapper cw = new CookieWrapper(); local [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
PhotoFallbackEffect.java | 111 float cw = s.width() * scale; local 123 mTarget.set(cx - cw / 2, cy - ch / 2, cx - ch / 2, cy + ch / 2); 128 mTarget.set(cx + ch / 2, cy - ch / 2, cx + cw / 2, cy + ch / 2); 135 mTarget.set(cx - cw / 2, cy - cw / 2, cx + cw / 2, cy + cw / 2); 143 mTarget.set(cx - cw / 2, cy - ch / 2, cx + cw / 2, cy - cw / 2) [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/ |
ClassLoaderLocalMap.java | 155 ClassWriter cw = new ClassWriter(0); local 158 cw.visit(V1_2, ACC_PUBLIC + ACC_SUPER, holderClassName, null, "java/lang/Object", null); 161 cw.visitField( 170 mv = cw.visitMethod(ACC_STATIC, "<clinit>", "()V", null, null); 181 mv = cw.visitMethod(ACC_PUBLIC, "<init>", "()V", null, null); 189 cw.visitEnd(); 190 return cw.toByteArray();
|
/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();
|
/bionic/libc/kernel/arch-x86/asm/ |
sigcontext.h | 40 unsigned long cw; member in struct:_fpstate
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
sigcontext.h | 40 unsigned long cw; member in struct:_fpstate
|
/external/chromium_org/sandbox/linux/services/ |
android_i386_ucontext.h | 24 unsigned long cw; member in struct:_libc_fpstate
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/ |
sigcontext32.h | 26 __u32 cw; member in struct:_fpstate_ia32
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/dvb/ |
ca.h | 73 unsigned char cw[8]; member in struct:ca_descr
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/ |
sigcontext32.h | 26 __u32 cw; member in struct:_fpstate_ia32
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/dvb/ |
ca.h | 73 unsigned char cw[8]; member in struct:ca_descr
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/ |
sigcontext32.h | 26 __u32 cw; member in struct:_fpstate_ia32
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/dvb/ |
ca.h | 73 unsigned char cw[8]; member in struct:ca_descr
|