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

1 2 3 4 5 6 7 8 91011>>

  /external/mockito/src/test/java/org/mockitoutil/
SimpleClassGenerator.java 16 ClassWriter cw = new ClassWriter(0); local
17 cw.visit(V1_6, ACC_PUBLIC + ACC_ABSTRACT + ACC_INTERFACE, relativePath, null, "java/lang/Object", null);
18 cw.visitEnd();
20 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;
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/
ClassWriterTest.java 47 ClassWriter cw = new ClassWriter(false, true); local
48 cr.accept(cw, false);
49 assertEquals(cr, new ClassReader(cw.toByteArray()));
ClassWriterTest2.java 47 ClassWriter cw = new ClassWriter(cr, false); local
48 cr.accept(cw, false);
49 assertEquals(cr, new ClassReader(cw.toByteArray()));
ClassAdapterTest.java 49 ClassWriter cw = new ClassWriter(true, true); local
50 cr.accept(new ClassAdapter(cw), false);
51 byte[] b = cw.toByteArray();
  /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...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/
FieldWriter.java 47 private ClassWriter cw; field in class:FieldWriter
105 * @param cw the class writer to which this field must be added.
113 final ClassWriter cw,
120 if (cw.firstField == null) {
121 cw.firstField = this;
123 cw.lastField.next = this;
125 cw.lastField = this;
126 this.cw = cw;
128 this.name = cw.newUTF8(name)
    [all...]
AnnotationWriter.java 43 private final ClassWriter cw; field in class:AnnotationWriter
93 * @param cw the class writer to which this annotation must be added.
101 final ClassWriter cw,
107 this.cw = cw;
121 bv.putShort(cw.newUTF8(name));
124 bv.put12('s', cw.newUTF8((String) value));
126 bv.put12('B', cw.newInteger(((Byte) value).byteValue()).index);
129 bv.put12('Z', cw.newInteger(v).index);
131 bv.put12('C', cw.newInteger(((Character) value).charValue()).index)
    [all...]
  /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/python/cpython3/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/annotation-tools/asmx/src/org/objectweb/asm/optimizer/
Constant.java 190 void write(final ClassWriter cw) {
193 cw.newConst(new Integer(intVal));
196 cw.newConst(new Long(longVal));
199 cw.newConst(new Float(floatVal));
202 cw.newConst(new Double(doubleVal));
205 cw.newConst(strVal1);
208 cw.newUTF8(strVal1);
211 cw.newClass(strVal1);
214 cw.newNameType(strVal1, strVal2);
217 cw.newField(strVal1, strVal2, strVal3)
    [all...]
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/tree/
ClassNodeTest.java 53 ClassWriter cw = new ClassWriter(false, true); local
54 cn.accept(cw);
55 assertEquals(cr, new ClassReader(cw.toByteArray()));
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/util/
CheckClassAdapterTest.java 51 ClassWriter cw = new ClassWriter(false); local
52 cr.accept(new CheckClassAdapter(cw), false);
53 assertEquals(cr, new ClassReader(cw.toByteArray()));
  /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
  /external/turbine/javatests/com/google/turbine/bytecode/
ClassReaderTest.java 39 ClassWriter cw = new ClassWriter(0); local
40 cw.visitAnnotation("Ljava/lang/Deprecated;", true);
41 cw.visit(
48 cw.visitMethod(
54 cw.visitMethod(
60 cw.visitMethod(0, "h", "(I)V", null, null);
61 byte[] bytes = cw.toByteArray();
99 ClassWriter cw = new ClassWriter(0); local
100 cw.visit(
107 AnnotationVisitor av = cw.visitAnnotation("Ljava/lang/annotation/Retention;", true)
141 ClassWriter cw = new ClassWriter(0); local
189 ClassWriter cw = new ClassWriter(0); local
216 ClassWriter cw = new ClassWriter(0); local
226 ClassWriter cw = new ClassWriter(0); local
    [all...]

Completed in 771 milliseconds

1 2 3 4 5 6 7 8 91011>>