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

1 2 3 4 5 6 7 8 91011>>

  /external/mockito/src/test/java/org/mockitoutil/
SimpleClassGenerator.java 12 ClassWriter cw = new ClassWriter(0); local
13 cw.visit(V1_6, ACC_PUBLIC + ACC_ABSTRACT + ACC_INTERFACE, relativePath, null, "java/lang/Object", null);
14 cw.visitEnd();
16 return cw.toByteArray();
  /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;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/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.15-4.8/sysroot/usr/include/i386-linux-gnu/
fpu_control.h 25 * (cw) register.
77 #define _FPU_RESERVED 0xF0C0 /* Reserved bits in cw */
96 #define _FPU_GETCW(cw) __asm__ __volatile__ ("fnstcw %0" : "=m" (*&cw))
97 #define _FPU_SETCW(cw) __asm__ __volatile__ ("fldcw %0" : : "m" (*&cw))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/
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))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pymath.c 22 unsigned short cw; local
23 __asm__ __volatile__ ("fnstcw %0" : "=m" (cw));
24 return cw;
27 void _Py_set_387controlword(unsigned short cw) {
28 __asm__ __volatile__ ("fldcw %0" : : "m" (cw));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pymath.c 22 unsigned short cw; local
23 __asm__ __volatile__ ("fnstcw %0" : "=m" (cw));
24 return cw;
27 void _Py_set_387controlword(unsigned short cw) {
28 __asm__ __volatile__ ("fldcw %0" : : "m" (cw));
  /external/python/cpython2/Python/
pymath.c 22 unsigned short cw; local
23 __asm__ __volatile__ ("fnstcw %0" : "=m" (cw));
24 return cw;
27 void _Py_set_387controlword(unsigned short cw) {
28 __asm__ __volatile__ ("fldcw %0" : : "m" (cw));
  /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 178 CookieWrapper cw = (CookieWrapper) args.cookie; local
180 if (cw == null) {
192 Rlog.d(LOG_TAG, "Processing event: " + cw.event + " token (arg1): " + msg.arg1 +
195 switch (cw.event) {
227 CookieWrapper cw = (CookieWrapper) args.cookie; local
228 if (!TextUtils.isEmpty(cw.number) && cw.cookie != null && mContext != null) {
230 cw.geoDescription = CallerInfo.getGeoDescription(mContext, cw.number);
273 CookieWrapper cw = (CookieWrapper) cookie local
409 CookieWrapper cw = new CookieWrapper(); local
473 CookieWrapper cw = new CookieWrapper(); local
507 CookieWrapper cw = new CookieWrapper(); local
    [all...]
  /external/strace/tests/
count.test 54 grep_log ' *[^ ]+ +(1\.[01]|0\.99)[^n]*nanosleep' -cw
55 grep_log '100\.00 +(1\.[01]|0\.99)[^n]*nanosleep' -cw -enanosleep
  /external/strace/tests-m32/
count.test 54 grep_log ' *[^ ]+ +(1\.[01]|0\.99)[^n]*nanosleep' -cw
55 grep_log '100\.00 +(1\.[01]|0\.99)[^n]*nanosleep' -cw -enanosleep
  /external/strace/tests-mx32/
count.test 54 grep_log ' *[^ ]+ +(1\.[01]|0\.99)[^n]*nanosleep' -cw
55 grep_log '100\.00 +(1\.[01]|0\.99)[^n]*nanosleep' -cw -enanosleep
  /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...]
  /packages/apps/Dialer/java/com/android/incallui/
CallerInfoAsyncQuery.java 160 CookieWrapper cw = new CookieWrapper(); local
161 cw.listener = listener;
162 cw.cookie = cookie;
163 cw.number = info.phoneNumber;
167 cw.event = EVENT_EMERGENCY_NUMBER;
169 cw.event = EVENT_VOICEMAIL_NUMBER;
171 cw.event = EVENT_NEW_QUERY;
177 cw, // cookie
435 CookieWrapper cw = (CookieWrapper) cookie; local
437 if (cw.listener != null)
457 CookieWrapper cw = (CookieWrapper) cookie; local
564 CookieWrapper cw = (CookieWrapper) args.cookie; local
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
ResizeInstructionsTest.java 55 final ClassWriter cw = new ClassWriter(ClassWriter.COMPUTE_FRAMES) { local
64 cw.visit(Opcodes.V1_5, Opcodes.ACC_PUBLIC, className, null,
66 final MethodVisitor mv = cw.visitMethod(Opcodes.ACC_PUBLIC, "m", "()V",
73 cw.visitEnd();
74 final byte[] original = cw.toByteArray();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
byext.py 94 cw = max(minwidth, len(col))
102 cw = max(cw, w)
103 cw = max(cw, len(str(total)))
104 colwidth[col] = cw
  /external/python/cpython2/Tools/scripts/
byext.py 93 cw = max(minwidth, len(col))
101 cw = max(cw, w)
102 cw = max(cw, len(str(total)))
103 colwidth[col] = cw
  /art/test/121-modifiers/src-java/
Asm.java 95 ClassWriter cw = new ClassWriter(0); local
96 classNode.accept(cw);
97 byte[] b = cw.toByteArray();
  /prebuilts/go/darwin-x86/src/image/
ycbcr.go 141 func yCbCrSize(r Rectangle, subsampleRatio YCbCrSubsampleRatio) (w, h, cw, ch int) {
145 cw = (r.Max.X+1)/2 - r.Min.X/2
148 cw = (r.Max.X+1)/2 - r.Min.X/2
151 cw = w
154 cw = (r.Max.X+3)/4 - r.Min.X/4
157 cw = (r.Max.X+3)/4 - r.Min.X/4
161 cw = w
170 w, h, cw, ch := yCbCrSize(r, subsampleRatio)
171 i0 := w*h + 0*cw*ch
172 i1 := w*h + 1*cw*c
    [all...]
  /prebuilts/go/linux-x86/src/image/
ycbcr.go 141 func yCbCrSize(r Rectangle, subsampleRatio YCbCrSubsampleRatio) (w, h, cw, ch int) {
145 cw = (r.Max.X+1)/2 - r.Min.X/2
148 cw = (r.Max.X+1)/2 - r.Min.X/2
151 cw = w
154 cw = (r.Max.X+3)/4 - r.Min.X/4
157 cw = (r.Max.X+3)/4 - r.Min.X/4
161 cw = w
170 w, h, cw, ch := yCbCrSize(r, subsampleRatio)
171 i0 := w*h + 0*cw*ch
172 i1 := w*h + 1*cw*c
    [all...]
  /external/guice/core/test/com/google/inject/internal/util/
LineNumbersTest.java 92 org.objectweb.asm.ClassWriter cw = local
94 cw.visit(org.objectweb.asm.Opcodes.V1_5,
100 org.objectweb.asm.MethodVisitor mv = cw.visitMethod(Modifier.PUBLIC, "<init>", sig, null, null);
110 cw.visitEnd();
112 byte[] buf = cw.toByteArray();

Completed in 569 milliseconds

1 2 3 4 5 6 7 8 91011>>