HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 276 - 300 of 2135) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
GetElementAt.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
30 private int[] in; field in class:GetElementAt
49 in = new int[size];
51 in[i] = random.nextInt(100);
60 gIn.copyFrom(in);
69 assertEquals("idx = " + k, in[k], out[k]);
81 gIn.copyFrom(in);
90 assertEquals("idx = " + k, in[k], out[k]);
  /development/samples/RenderScript/HelloCompute/src/com/example/android/rs/hellocompute/
HelloCompute.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
45 ImageView in = (ImageView) findViewById(R.id.displayin); local
46 in.setImageBitmap(mBitmapIn);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
ExplicitTest.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
176 DerInputStream in = new DerInputStream((byte[]) taggedType[i][1]); local
178 ((ASN1Type) taggedType[i][2]).decode(in));
GeneralizedTimeTest.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
107 DerInputStream in = new DerInputStream( local
111 gtime.decode(in)); //decoded
116 DerInputStream in = new DerInputStream(new ByteArrayInputStream( local
120 gtime.decode(in)); //decoded
ImplicitTest.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
167 DerInputStream in = new DerInputStream((byte[]) taggedType[i][1]); local
169 ((ASN1Type) taggedType[i][2]).decode(in));
IntegerTest.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
93 DerInputStream in = new DerInputStream((byte[]) validTestcase[i][2]); local
96 (byte[]) asn1.decode(in))); // returned
101 DerInputStream in = new DerInputStream(new ByteArrayInputStream( local
105 (byte[]) asn1.decode(in))); //returned
126 // wrong content: is not encoded in minimum number of octets
128 // wrong content: is not encoded in minimum number of octets
133 DerInputStream in = new DerInputStream(invalid[i]); local
134 ASN1Integer.getInstance().decode(in);
    [all...]
UTCTimeTest.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
99 DerInputStream in = new DerInputStream((byte[]) validUTCTimes[i][1]); local
102 utime.decode(in)); //decoded
107 DerInputStream in = new DerInputStream(new ByteArrayInputStream( local
111 utime.decode(in)); //decoded
  /external/apache-http/src/org/apache/http/impl/conn/
LoggingSessionInputBuffer.java 12 * (the "License"); you may not use this file except in compliance with
17 * Unless required by applicable law or agreed to in writing, software
56 private final SessionInputBuffer in; field in class:LoggingSessionInputBuffer
63 * @param in The session input buffer.
66 public LoggingSessionInputBuffer(final SessionInputBuffer in, final Wire wire) {
68 this.in = in;
73 return this.in.isDataAvailable(timeout);
77 int l = this.in.read(b, off, len);
85 int l = this.in.read()
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
ContentLengthInputStream.java 12 * "License"); you may not use this file except in compliance
17 * Unless required by applicable law or agreed to in writing,
94 private SessionInputBuffer in = null; field in class:ContentLengthInputStream
99 * @param in The session input buffer to wrap
103 public ContentLengthInputStream(final SessionInputBuffer in, long contentLength) {
105 if (in == null) {
111 this.in = in;
152 return this.in.read();
179 int count = this.in.read(b, off, len)
    [all...]
  /external/chromium_org/base/json/
string_escape_unittest.cc 3 // found in the LICENSE file.
47 std::string in = cases[0].to_escape; local
49 EscapeJSONString(in, false, &out);
54 EscapeJSONString(in, true, &out_quoted);
59 // now try with a NULL in the string
62 in = null_prepend + in;
66 EscapeJSONString(in, false, &out);
85 string16 in = WideToUTF16(cases[i].to_escape); local
88 EscapeJSONString(in, false, &out)
97 string16 in = WideToUTF16(cases[0].to_escape); local
166 std::string in = std::string(cases[i].to_escape); local
    [all...]
  /external/chromium_org/remoting/codec/
video_decoder_verbatim.cc 3 // found in the LICENSE file.
32 const char* in = packet.data().data(); local
52 if (in + rect_row_size > packet.data().data() + packet.data().size()) {
56 memcpy(out, in, rect_row_size);
57 in += rect_row_size;
62 if (in != packet.data().data() + packet.data().size()) {
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEOffset.cpp 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
14 * This library is distributed in the hope that it will be useful,
80 FilterEffect* in = inputEffect(0); local
86 setIsAlphaImage(in->isAlphaImage());
88 FloatRect drawingRegion = drawingRegionOfInputImage(in->absolutePaintRect());
91 resultImage->context()->drawImageBuffer(in->asImageBuffer(), drawingRegion);
  /external/chromium_org/third_party/boringssl/src/crypto/bytestring/
ber.c 5 * copyright notice and this permission notice appear in all copies.
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
25 /* cbs_find_ber walks an ASN.1 structure in |orig_in| and sets |*ber_found|
27 * |in| is not changed. It returns one on success (i.e. |*ber_found| was set)
30 CBS in; local
36 CBS_init(&in, CBS_data(orig_in), CBS_len(orig_in));
39 while (CBS_len(&in) > 0) {
44 if (!CBS_get_any_asn1_element(&in, &contents, &tag, &header_len))
    [all...]
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
compare_to_expectations_test.py 7 found in the LICENSE file.
11 TODO(epoger): Create a command to update the expected results (in
13 1. examine the results in self.output_dir_actual and make sure they are ok
28 import gm_json # must import results first, so that gm_json will be in sys.path namespace
  /external/chromium_org/third_party/skia/tests/
ColorFilterTest.cpp 5 * found in the LICENSE file.
48 // allow for no filter if we're in Dst mode (its a no op)
97 SkPMColor in, out; local
102 in = SkPackARGB32(i, i, i, i);
103 lf->filterSpan(&in, 1, &out);
112 in = SkPackARGB32(i, 0, 0, 0);
113 lf->filterSpan(&in, 1, &out);
119 in = SkPackARGB32(i, i, i / 2, i / 3);
120 lf->filterSpan(&in, 1, &out);
121 REPORTER_ASSERT(reporter, out != in);
    [all...]
  /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/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
fb_writer.c 11 * This library is distributed in the hope that it will be useful, but
109 uint8_t *in = parms.data; local
128 /* do 4-times multibuffering using DMA list, process in two steps */
133 spu_mfcdma32(buf[0], (unsigned int)in, in_line_size,
139 in += in_line_stride;
141 deprintf("[SPU] 1st buffer copied in=0x%x, fb=0x%x\n", in,
147 spu_mfcdma32(buf[1], (unsigned int)in, in_line_size,
153 in += in_line_stride;
155 deprintf("[SPU] 2nd buffer copied in=0x%x, fb=0x%x\n", in
    [all...]
  /external/skia/gm/rebaseline_server/
compare_configs_test.py 7 found in the LICENSE file.
11 TODO(epoger): Create a command to update the expected results (in
13 1. examine the results in self._output_dir_actual and make sure they are ok
28 import gm_json # must import results first, so that gm_json will be in sys.path namespace

Completed in 166 milliseconds

<<11121314151617181920>>