HomeSort by relevance Sort by last modified time
    Searched refs:is (Results 201 - 225 of 8960) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_dequantize_sample.cpp 11 * distributed under the License is distributed on an "AS IS" BASIS,
58 int32 is[SUBBANDS_NUMBER*FILTERBANK_BANDS],
65 int32 is[SUBBANDS_NUMBER*FILTERBANK_BANDS], dequantize output as (.)^(4/3)
187 void pvmp3_dequantize_sample(int32 is[SUBBANDS_NUMBER*FILTERBANK_BANDS],
294 /* 0 < abs(is[ss]) < 8192 */
296 int32 tmp = fxp_mul32_Q30((is[ss] << 16), power_1_third(pv_abs(is[ ss])));
305 is[ss] = (tmp >> temp);
309 is[ss] = 0
    [all...]
  /external/clang/lib/Format/
UnwrappedLineParser.cpp 5 // This file is distributed under the University of Illinois Open Source
195 assert(FormatTok.Tok.is(tok::l_brace) && "'{' expected");
205 if (!FormatTok.Tok.is(tok::r_brace)) {
216 assert(FormatTok.Tok.is(tok::hash) && "'#' expected");
266 assert(!FormatTok.Tok.is(tok::l_brace));
271 if (FormatTok.Tok.is(tok::l_brace)) {
303 if (FormatTok.Tok.is(tok::kw_namespace)) {
338 if (FormatTok.Tok.is(tok::string_literal)) {
340 if (FormatTok.Tok.is(tok::l_brace)) {
356 if (FormatTok.Tok.is(tok::l_brace)
    [all...]
  /development/ndk/samples/module-exports/jni/bar/
bar.h 10 #error FOO is not correctly defined here !
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ReadAsset.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
20 // class is in a sub-package.
46 // text view. Note that the text we are loading is ASCII, so we
49 InputStream is = getAssets().open("read_asset.txt"); local
54 int size = is.available();
58 is.read(buffer);
59 is.close();
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
DeflaterInputStreamTest.java 12 * distributed under the License is distributed on an "AS IS" BASIS,
31 String testStr = "Hi,this is a test";
33 InputStream is; field in class:DeflaterInputStreamTest
40 DeflaterInputStream dis = new DeflaterInputStream(is);
62 DeflaterInputStream dis = new DeflaterInputStream(is);
86 DeflaterInputStream dis = new DeflaterInputStream(is);
98 DeflaterInputStream dis = new DeflaterInputStream(is);
108 DeflaterInputStream dis = new DeflaterInputStream(is);
131 DeflaterInputStream dis = new DeflaterInputStream(is);
    [all...]
  /external/clang/lib/Headers/
cpuid.h 3 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * copies of the Software, and to permit persons to whom the Software is
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 #error this header is for x86 only
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
UriMatcherTest.java 12 import static org.hamcrest.CoreMatchers.is;
33 assertThat(root.code, is(NO_MATCH));
34 assertThat(root.map.isEmpty(), is(true)); method
35 assertThat(root.number, is(nullValue()));
36 assertThat(root.text, is(nullValue()));
53 assertThat(node.code, is(1));
61 assertThat(node.number.code, is(1));
62 assertThat(node.text.code, is(2));
67 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar")), is(1));
70 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar/1")), is(2))
82 assertThat(matcher.match(Uri.withAppendedPath(URI, "cat")), is(NO_MATCH)); method
83 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar")), is(NO_MATCH)); method
84 assertThat(matcher.match(Uri.withAppendedPath(URI, "bar\/cat")), is(NO_MATCH)); method
    [all...]
  /external/valgrind/main/memcheck/tests/
metadata.stdout.exp 1 result of GET is 1 (1 for success)
12 result of SET is 1 (1 for success)
  /ndk/sources/android/cpufeatures/
Android.mk 8 # This is included by the platform build system.
12 # This is included by the NDK build system.
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/input.streams/istream.unformatted/
sync.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
54 std::istream is(&sb);
55 assert(is.sync() == 0);
60 std::wistream is(&sb);
61 assert(is.sync() == 0);
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.adapt/rand.adapt.ibits/
io.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
24 // operator>>(basic_istream<charT, traits>& is,
39 std::istringstream is(os.str());
41 is >> e2;
53 std::istringstream is(os.str());
55 is >> e2;
  /prebuilts/sdk/renderscript/clang-include/
cpuid.h 3 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * copies of the Software, and to permit persons to whom the Software is
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 #error this header is for x86 only
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
DataInputStreamTest.java 12 * distributed under the License is distributed on an "AS IS" BASIS,
159 DataInputStream is = new DataInputStream(new ByteArrayInputStream( local
165 is.readFully(byteArray, -1, -1);
172 is.readFully(byteArray, 0, -1);
179 is.readFully(byteArray, 1, -1);
185 is.readFully(byteArray, -1, 0);
186 is.readFully(byteArray, 0, 0);
187 is.readFully(byteArray, 1, 0);
190 is.readFully(byteArray, -1, 1)
210 DataInputStream is = new DataInputStream(new ByteArrayInputStream( local
273 DataInputStream is = new DataInputStream(null); local
334 DataInputStream is = new DataInputStream(null); local
    [all...]
  /dalvik/tools/
deadcode.py 9 When found, the name of the section is extracted. The entire contents
10 of that section is added to a result hashmap with the section name
28 if result is None:
29 if anchor is not -1:
35 if anchor is not -1:
60 if result is None:
69 whether or not there is method invokation line in the codes section that
78 if match is -1:
81 # Find the beginning of the line the method reference is on
85 # and the method reference, then it is a call to that method rathe
    [all...]
  /development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
Application.mk 1 # The ARMv7 is significanly faster due to the use of the hardware FPU
  /development/ndk/platforms/android-9/samples/native-plasma/jni/
Application.mk 1 # The ARMv7 is significanly faster due to the use of the hardware FPU
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
RecognitionException.pm 12 is => 'ro',
18 is => 'ro',
24 is => 'ro',
29 is => 'ro',
38 is => 'ro',
43 is => 'ro',
49 is => 'ro',
55 is => 'rw',
  /external/llvm/projects/sample/autoconf/m4/
func_isinf.m4 10 AC_DEFINE([HAVE_ISINF_IN_MATH_H],1,[Set to 1 if the isinf function is found in <math.h>])
17 AC_DEFINE([HAVE_ISINF_IN_CMATH],1,[Set to 1 if the isinf function is found in <cmath>])
24 AC_DEFINE([HAVE_STD_ISINF_IN_CMATH],1,[Set to 1 if the std::isinf function is found in <cmath>])
31 AC_DEFINE([HAVE_FINITE_IN_IEEEFP_H],1,[Set to 1 if the finite function is found in <ieeefp.h>])
  /external/valgrind/main/drd/tests/
tc17_sembar.stderr.exp 3 done, result is 88, should be 88
  /external/valgrind/main/gdbserver_tests/
mcvabits.stderrB.exp 4 Address 0x........ is 0 bytes inside data symbol "undefined"
6 Address 0x........ is 0 bytes inside data symbol "undefined"
9 Address 0x........ is 0 bytes inside data symbol "undefined"
12 Address 0x........ is 0 bytes inside data symbol "undefined"
15 Address 0x........ is 0 bytes inside data symbol "undefined"
18 Address 0x........ is 0 bytes inside data symbol "undefined"
21 Address 0x........ is 0 bytes inside data symbol "undefined"
24 Address 0x........ is 0 bytes inside data symbol "undefined"
27 Address 0x........ is 0 bytes inside data symbol "undefined"
30 Address 0x........ is 0 bytes inside data symbol "undefined
    [all...]
  /external/valgrind/main/helgrind/tests/
tc17_sembar.stderr.exp 3 done, result is 88, should be 88
  /ndk/sources/cxx-stl/llvm-libc++/test/iterators/stream.iterators/istream.iterator/istream.iterator.ops/
arrow.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
26 std::istream& operator>>(std::istream& is, A& a)
28 return is >> a.d_ >> a.i_;
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.pconst/
io.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
22 // operator>>(basic_istream<charT, traits>& is,
39 std::istringstream is(os.str());
41 is >> d2;
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.dis/rand.dist.samp/rand.dist.samp.plinear/
io.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
22 // operator>>(basic_istream<charT, traits>& is,
39 std::istringstream is(os.str());
41 is >> d2;
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
StreamForwarder.java 24 InputStream is; field in class:StreamForwarder
31 StreamForwarder(Channel c, StreamForwarder sibling, Socket s, InputStream is, OutputStream os, String mode)
34 this.is = is;
49 int len = is.read(buffer);
78 is.close();
99 c.cm.closeChannel(c, "StreamForwarder (" + mode + ") is cleaning up the connection", true);

Completed in 986 milliseconds

1 2 3 4 5 6 7 891011>>