HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 176 - 200 of 1097) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
filterbanks_unittest.cc 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
78 int16_t in[kSamples]; local
98 in[i] = WEBRTC_SPL_WORD32_MAX / (i + 1);
101 WebRtcIsacfix_HighpassFilterFixDec32(in, kSamples,
105 EXPECT_EQ(out[i], in[i]);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
filterbanks.c 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
26 * sections are used to filter the input in a cascade manner.
50 the input signal, and part of the signal in the input 'lookahead buffer'.
53 in: a length FRAMESAMPLES array of input samples
60 based on the samples in the two prefiltdata->INLABUFx arrays
64 array in[]
94 float in[FRAMESAMPLES]; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
genmodule.c 3 * Generate module.c from module.in and Makefile.am or Makefile.
7 * Redistribution and use in source and binary forms, with or without
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR OTHER CONTRIBUTORS BE
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
48 FILE *in, *out; local
63 fprintf(stderr, "Usage: %s <module.in> <Makefile[.am]> <outfile>\n", argv[0]);
85 in = fopen(inc->filename, "rt")
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
scanner.h 8 FILE *in; member in struct:Scanner
  /external/elfutils/0.153/libebl/
eblobjnote.c 10 Red Hat elfutils is distributed in the hope that it will be useful, but
19 In addition, as a special exception, Red Hat, Inc. gives You the
26 those well defined interfaces identified in the file named EXCEPTION
27 found in the source code files (the "Approved Interfaces"). The files
35 License in all respects for all of the Red Hat elfutils code and other
36 code used in conjunction with Red Hat elfutils except the Non-GPL Code
47 included package. Should you wish to participate in the Open Invention
182 Elf_Data in = local
198 if (elf32_xlatetom (&out, &in, ebl->data) != NULL)
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
ReserializingTestCollectionGenerator.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
58 ObjectInputStream in = new ObjectInputStream( local
60 return (T) in.readObject();
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 14 // with the head starting in the middle.
54 JIT("jit", cl::desc("Run program Just-In-Time"));
117 std::istream *in = &std::cin; local
119 in = new std::ifstream(InputFilename.c_str());
128 Module *mod = bf.parse(in, 65536, cf, Context); //64 KiB
129 if (in != &std::cin)
130 delete in;
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
UrlConnection.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
64 InputStream in = urlConnection.getInputStream(); local
66 in = new GZIPInputStream(in);
69 long total = readAllAndClose(in);
73 System.out.println(String.format("Transferred % 8d bytes in %4d ms",
  /external/emma/lib/internal/
stamptool.jar 
  /external/emma/core/java12/com/vladium/util/
IPathEnumerator.java 52 void handleArchiveEntry (JarInputStream in, ZipEntry entry);
206 JarInputStream in = null; local
210 // crash the JVM in some builds; however, it uses random file
212 // entries in their archives (which JarInputStream can't do);
219 in = new JarInputStream (new BufferedInputStream (new FileInputStream (fullArchive), 32 * 1024));
223 Manifest manifest = in.getManifest (); // can be null
230 for (ZipEntry entry; (entry = in.getNextEntry ()) != null; )
235 handler.handleArchiveEntry (in, entry);
236 in.closeEntry ();
245 if (manifest == null) manifest = in.getManifest ()
    [all...]
  /external/javassist/src/main/javassist/tools/web/
Webserver.java 6 * 1.1 (the "License"); you may not use this file except in compliance with
31 * <p><b>Note:</b> although this class is included in the Javassist API,
33 * Javassist. Especially, there might be security flaws in this server.
189 InputStream in = new BufferedInputStream(clnt.getInputStream()); local
190 String cmd = readLine(in);
193 while (skipLine(in) > 0){
198 doReply(in, out, cmd);
205 in.close();
210 private String readLine(InputStream in) throws IOException {
213 while ((c = in.read()) >= 0 && c != 0x0d
    [all...]
  /bionic/tests/
fcntl_test.cpp 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
161 int in = open("/proc/cpuinfo", O_RDONLY); local
162 ASSERT_NE(in, -1);
166 ssize_t bytes_read = splice(in, 0, pipe_fds[1], NULL, 8*1024, SPLICE_F_MORE | SPLICE_F_MOVE);
174 close(in);
211 int in = open("/proc/version", O_RDONLY); local
212 ASSERT_NE(in, -1);
215 ssize_t bytes_read = splice(in, 0, pipe1[1], NULL, 8*1024, SPLICE_F_MORE | SPLICE_F_MOVE);
  /bootable/recovery/mtdutils/
flash_image.c 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
78 MtdReadContext *in = mtd_read_partition(partition); local
79 if (in == NULL) {
84 int checklen = mtd_read_data(in, check, sizeof(check));
92 mtd_read_close(in);
  /build/tools/
java-layers.py 12 sys.stderr.write("the rules defined in the DEPENDENCY_FILE.\n")
22 sys.stderr.write(" to any classes present in the second package, or any\n")
30 sys.stderr.write(" listed in the dependency file.\n")
49 for d in self.transitive:
58 if dep in visited:
61 for v in visited:
67 for upper in dep.uppers:
69 if upper in deps:
72 self.parts = [(dep.lower.split('.'),dep) for dep in deps.itervalues()]
74 for dep in deps.itervalues()
231 sys.stderr.write("%s: Illegal import in package '%s' of '%s'\\n" namespace
    [all...]
  /build/tools/rgb2565/
to565.c 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
31 unsigned char in[3]; local
34 while(read(0, in, 3) == 3) {
35 out = to565(in[0],in[1],in[2]);
43 unsigned char in[3]; local
55 while(read(0, in, 3) == 3) {
56 int r = in[0] + error[i*3+0]
103 unsigned char in[3]; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
DexJarMaker.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
66 // Ignoring deliberately in order to keep the original exception clear.
84 BufferedInputStream in = new BufferedInputStream(new FileInputStream(source)); local
90 while ((curr = in.read()) != -1) {
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TextSwitcher1.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
51 Animation in = AnimationUtils.loadAnimation(this, local
55 mSwitcher.setInAnimation(in);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
SecureClassLoader2Test.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
65 InputStream in = jar.getInputStream(jar.getEntry("packA/SecurityTest.class")); local
66 byte[] bytes = InputStreamHelper.readFullyAndClose(in);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
BerInputStreamTest.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
82 BerInputStream in = new BerInputStream( local
87 assertEquals(expected, in.getLength());
116 encoding[1] = (byte) 0x82; // length is encoded in two bytes
120 BerInputStream in = new BerInputStream(new ByteArrayInputStream( local
122 assertEquals(encoding.length, in.getBuffer().length);
140 BerInputStream in = new BerInputStream(encoded, 0, 3); local
141 assertEquals("boolean", 1, in.getLength());
144 in = new BerInputStream(encoded, 3, 4)
178 ByteArrayInputStream in = new ByteArrayInputStream(encoding) { local
    [all...]
BitStringTest.java 6 * (the "License"); you may not use this file except in compliance with
11 * Unless required by applicable law or agreed to in writing, software
64 DerInputStream in = new DerInputStream( local
68 BitString decoded = (BitString) asn1.decode(in);
79 DerInputStream in = new DerInputStream(new ByteArrayInputStream( local
83 BitString decoded = (BitString) asn1.decode(in);
111 // wrong content: unused bits in final octet are not 0
118 DerInputStream in = new DerInputStream(invalid[i]); local
119 ASN1BitString.getInstance().decode(in);
159 DerInputStream in = new DerInputStream local
201 DerInputStream in = new DerInputStream( local
    [all...]
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/
VideoTestWebServer.java 3 // found in the LICENSE file.
22 // VIDEO_ID must be kept in sync with the id in full_screen_video_test.html.
77 InputStream in = context.getAssets().open(asset); local
81 int len = in.read(buffer, 0, buflen);
85 len = in.read(buffer, 0, buflen);
  /external/chromium_org/media/base/
audio_buffer_converter_unittest.cc 3 // found in the LICENSE file.
54 void AddInput(const scoped_refptr<AudioBuffer>& in) {
55 if (!in->end_of_stream()) {
56 input_frames_ += in->frame_count();
58 in->frame_count() *
60 in->sample_rate());
62 audio_buffer_converter_->AddInput(in);
96 scoped_refptr<AudioBuffer> in = local
98 AddInput(in);
103 scoped_refptr<AudioBuffer> in local
110 scoped_refptr<AudioBuffer> in = local
139 scoped_refptr<AudioBuffer> in = local
146 scoped_refptr<AudioBuffer> in = local
153 scoped_refptr<AudioBuffer> in = local
    [all...]
  /external/chromium_org/skia/ext/
recursive_gaussian_convolution.cc 3 // found in the LICENSE file.
18 // All of the filter scaling factors are in fixed point with kShiftBits bits of
86 const unsigned char* in = source_data; local
90 ++r, in += source_row_stride, out += output_row_stride) {
94 w[0] = w[1] = w[2] = in[0];
99 in[0], in[0], in[source_pixel_stride], w, 3, b);
104 w[n] = ForwardFilter<order>(in[byte_index - source_pixel_stride],
105 in[byte_index]
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEDropShadow.cpp 2 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
10 * This library is distributed in the hope that it will be useful,
73 FilterEffect* in = inputEffect(0); local
83 FloatRect drawingRegion = drawingRegionOfInputImage(in->absolutePaintRect());
94 RefPtr<Image> image = in->asImageBuffer()->copyImage(DontCopyBackingStore);
FETile.cpp 11 * This library is distributed in the hope that it will be useful,
54 FilterEffect* in = inputEffect(0); local
60 setIsAlphaImage(in->isAlphaImage());
64 FloatRect tileRect = in->maxEffectRect();
67 if (in->filterEffectType() == FilterEffectTypeSourceInput) {
83 if (ImageBuffer* tileImageBuffer = in->asImageBuffer())
84 tileImageContext->drawImageBuffer(tileImageBuffer, IntRect(in->absolutePaintRect().location(), tileImageBuffer->size()));

Completed in 57 milliseconds

1 2 3 4 5 6 78 91011>>