/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_ssa.cpp | 6 * to deal in the Software without restriction, including without limitation 11 * The above copyright notice and this permission notice shall be included in 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF 19 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 271 BasicBlock *in = BasicBlock::get(ei.getNode()); local 273 if (in->cfg.visit(seq)) 274 buildDefSetsPreSSA(in, seq); 276 bb->defSet |= in->defSet [all...] |
/external/mesa3d/src/mesa/vbo/ |
vbo_split_copy.c | 10 * to deal in the Software without restriction, including without limitation 16 * in all copies or substantial portions of the Software. 20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 21 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 47 * non-indexed primitives may be converted to indexed in some cases 48 * (eg loops, fans) in order to use this splitting path. 82 GLuint in; member in struct:copy_context::__anon21285 89 GLuint dstbuf_size; /**< in vertices * [all...] |
/external/mockito/src/org/mockito/internal/ |
MockitoCore.java | 173 for (Invocation in : ins) {
174 if (in.stubInfo() != null) {
175 in.ignoreForVerification();
|
/external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/ |
OkApacheClientTest.java | 270 InputStream in = new GZIPInputStream(body.getContent()); local 274 while ((read = in.read(temp)) != -1) {
|
/external/okhttp/okio/okio/src/test/java/okio/ |
ByteStringTest.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 104 InputStream in = new ByteArrayInputStream("abc".getBytes(Util.UTF_8)); local 105 assertEquals(ByteString.decodeHex("6162"), ByteString.read(in, 2)); 106 assertEquals(ByteString.decodeHex("63"), ByteString.read(in, 1)); 107 assertEquals(ByteString.of(), ByteString.read(in, 0)); 111 InputStream in = new ByteArrayInputStream("ABC".getBytes(Util.UTF_8)); local 112 assertEquals(ByteString.encodeUtf8("ab"), ByteString.read(in, 2).toAsciiLowercase()); 113 assertEquals(ByteString.encodeUtf8("c"), ByteString.read(in, 1).toAsciiLowercase()); 114 assertEquals(ByteString.EMPTY, ByteString.read(in, 0).toAsciiLowercase()) 131 InputStream in = new ByteArrayInputStream("abc".getBytes(Util.UTF_8)); local [all...] |
/external/pdfium/third_party/freetype/src/base/ |
ftoutln.c | 21 /* All functions are declared in freetype.h. */ 36 /* The macro FT_COMPONENT is used in trace mode. It is an implicit */ 48 /* documentation is in ftoutln.h */ 69 FT_Int n; /* index of contour in outline */ 70 FT_UInt first; /* index of first point in contour */ 89 FT_Int last; /* index of last point in contour */ 338 /* documentation is in ftoutln.h */ 354 /* documentation is in ftoutln.h */ 399 /* documentation is in ftoutln.h */ 457 /* documentation is in ftoutln.h * 937 FT_Vector in, out, anchor, shift; local [all...] |
/external/protobuf/src/google/protobuf/io/ |
zero_copy_stream_unittest.cc | 5 // Redistribution and use in source and binary forms, with or without 11 // * Redistributions in binary form must reproduce the above 13 // in the documentation and/or other materials provided with the 22 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 27 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 38 // match. When the data is written, it is written in several small chunks 105 // Writes some text to the output stream in a particular order. Returns 133 const uint8* in = reinterpret_cast<const uint8*>(data); local 146 memcpy(out, in, in_size) 163 const void* in; local [all...] |
/external/speex/libspeex/ |
sb_celp.c | 4 Redistribution and use in source and binary forms, with or without 11 - Redistributions in binary form must reproduce the above copyright 12 notice, this list of conditions and the following disclaimer in the 22 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR 27 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 28 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 320 spx_word16_t *in = (spx_word16_t*)vin; local 334 low = in; 335 high = in+st->frame_size; 339 qmf_decomp(in, h0, low, high, st->full_frame_size, QMF_ORDER, st->h0_mem, stack) [all...] |
/external/v8/src/regexp/ |
regexp-parser.h | 3 // found in the LICENSE file. 138 RegExpParser(FlatStringReader* in, Handle<String>* error, bool multiline_mode, 150 // Parses a {...,...} quantifier and stores the range in the given 167 // stores the result in the output parameter and returns true. If 221 // Index in captures array of first capture in this sub-expression, if any. 250 bool has_next() { return next_pos_ < in()->length(); } 252 FlatStringReader* in() { return in_; } function in class:v8::internal::BASE_EMBEDDED
|
/external/vulkan-validation-layers/tests/ |
vktestframework.cpp | 8 * deal in the Materials without restriction, including without limitation the 13 * The above copyright notice(s) and this permission notice shall be included in 20 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 21 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 22 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE 23 * USE OR OTHER DEALINGS IN THE MATERIALS. 171 "\t\tDisplay test images in viewer after tests complete.\n"); 173 "\t\tSave tests images as ppm files in current working " 178 "\t\tCompare test images to 'golden' image in golden folder.\n" 179 "\t\tAlso saves the generated test image in current working\n 599 FILE *in; local [all...] |
/external/webp/src/demux/ |
anim_decode.c | 4 // that can be found in the COPYING file in the root of the source 6 // in the file PATENTS. All contributing project authors may 7 // be found in the AUTHORS file in the root of the source tree. 232 // Blend 'num_pixels' in 'src' over 'dst' assuming they are NOT pre-multiplied 245 // Individually multiply each channel in 'pix' by 'scale'. 259 // Blend 'num_pixels' in 'src' over 'dst' assuming they are pre-multiplied by 338 const uint8_t* in = iter.fragment.bytes; local 348 if (WebPDecode(in, in_size, config) != VP8_STATUS_OK) [all...] |
/external/webp/src/dsp/ |
lossless_enc_sse2.c | 4 // that can be found in the COPYING file in the root of the source 6 // in the file PATENTS. All contributing project authors may 7 // be found in the AUTHORS file in the root of the source tree. 30 const __m128i in = _mm_loadu_si128((__m128i*)&argb_data[i]); // argb local 31 const __m128i A = _mm_srli_epi16(in, 8); // 0 a 0 g 34 const __m128i out = _mm_sub_epi8(in, C); 58 const __m128i in = _mm_loadu_si128((__m128i*)&argb_data[i]); // argb local 59 const __m128i A = _mm_and_si128(in, mask_ag); // a 0 g [all...] |
/external/webp/src/utils/ |
quant_levels_dec.c | 4 // that can be found in the COPYING file in the root of the source 6 // in the file PATENTS. All contributing project authors may 7 // be found in the AUTHORS file in the root of the source tree. 35 { 0, 8, 2, 10 }, // coefficients are in DFIX fixed-point precision 52 int scale_; // normalization factor, in FIX bits precision 109 const uint16_t* const in = p->end_; local 117 const uint16_t delta = in[x + r - 1] + in[r - x] [all...] |
/frameworks/av/services/audioflinger/ |
AudioResamplerDyn.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 123 // copy in the input data into the head (impulse+halfNumCoefs) of the buffer. 127 const TI* const in, const size_t inputIndex) 131 head[i] = in[inputIndex*CHANNELS + i]; 135 // advance the impulse pointer, and load in data into the head (impulse+halfNumCoefs) 139 const TI* const in, const size_t inputIndex) 148 readAgain<CHANNELS>(impulse, halfNumCoefs, in, inputIndex); 355 // determine the number of polyphases in the filterbank. 394 mPhaseFraction %= phaseWrapLimit; // should not do anything, but just in case 554 const TI* const in = reinterpret_cast<const TI*>(mBuffer.raw); local [all...] |
test-resample.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 60 fprintf(stderr," -O # frames output per call to resample() in CSV format\n"); 61 fprintf(stderr," -P # frames provided per call to resample() in CSV format\n"); 65 // Convert a list of integers in CSV format to a Vector of those values. 66 // Returns the number of elements in the list, or -1 on error. 232 int16_t* in = (int16_t*)input_vaddr; local 238 in[i*channels + j] = yi / (1 + j); 263 const size_t mFrameSize; // size of each frame in bytes 267 size_t mNextPidx; // index of next entry in mPvalues to us [all...] |
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/ |
RgbPlayerActivity.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 185 FileInputStream in = new FileInputStream(filename); local 187 in.read(mImageBytes);
|
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
SettingsBackupAgent.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 76 * List of settings that are backed up are stored in the Settings.java file 98 // Slots in the checksum array. Never insert new items in the middle 112 // Number of entries in the checksum array at various version numbers 156 // stored in the full-backup tarfile as well, so should not be changed. 159 // Delay in milliseconds between the restore operation and when we will bounce 160 // wifi in order to rewrite the supplicant config etc. 181 public static Network readFromStream(BufferedReader in) { 712 DataInputStream in = new DataInputStream(instream); local 1008 DataInputStream in = new DataInputStream(bais); local 1207 BufferedReader in = new BufferedReader(new FileReader(FILE_WIFI_SUPPLICANT)); local 1218 BufferedReader in = new BufferedReader(new CharArrayReader(restoredAsBytes)); local 1307 DataInputStream in = new DataInputStream(new ByteArrayInputStream(data)); local [all...] |
/frameworks/base/services/core/java/com/android/server/fingerprint/ |
FingerprintsUserState.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 117 // Not the most efficient algorithm in the world, but there shouldn't be more than 10 206 FileInputStream in; local 211 in = new FileInputStream(mFile); 218 parser.setInput(in, null); 225 IoUtils.closeQuietly(in);
|
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
AbstractClassAdapter.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 72 String in = type.getInternalName(); local 73 return "L" + renameInternalType(in) + ";"; 97 String in = type.getInternalName(); local 98 String newIn = renameInternalType(in); 99 if (!newIn.equals(in)) {
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/configparse/ |
MIMEContainer.java | 36 * @param in A reader to read MIME data from; Note that the charset should be ISO-8859-1 to 39 * @param boundary A boundary string for the MIME section that this container is in. 43 public MIMEContainer(LineNumberReader in, String boundary) throws IOException { 44 Map<String,List<String>> headers = parseHeader(in); 48 throw new IOException("Missing " + Type + " @ " + in.getLineNumber()); 84 String line = in.readLine(); 87 in.getLineNumber()); 97 MIMEContainer container = new MIMEContainer(in, subBoundary); 130 mText = recode(getBody(in, boundary, quoted, eof), charset); 196 private static Map<String,List<String>> parseHeader(LineNumberReader in) throws IOException [all...] |
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
PasspointManagementObjectManagerTest.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 67 InputStream in = getClass().getClassLoader().getResourceAsStream(configFile); local 70 BufferedReader reader = new BufferedReader(new InputStreamReader(in)); 112 InputStream in = getClass().getClassLoader().getResourceAsStream(R2_TTLS_XML_FILE); local 113 BufferedReader reader = new BufferedReader(new InputStreamReader(in)); 198 InputStream in = getClass().getClassLoader().getResourceAsStream(R2_TTLS_XML_FILE); local 199 BufferedReader reader = new BufferedReader(new InputStreamReader(in));
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicBlend.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 93 extern "C" int rsdIntrinsicBlend_K(uchar4 *out, uchar4 const *in, int slot, 119 uchar4 *in = (uchar4 *)info->inPtr[0]; local 127 if (rsdIntrinsicBlend_K(out, in, info->slot, x1, x2) >= 0) 138 for (;x1 < x2; x1++, out++, in++) { 139 *out = *in; 150 rsdIntrinsicBlendSrcOver_K(out, in, len); 153 in += len << 3; 157 for (;x1 < x2; x1++, out++, in++) [all...] |
/frameworks/support/core-utils/java/android/support/v4/content/ |
FileProvider.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 53 * a content URI, in order to send the content URI 60 * In comparison, to control access to a <code>file:///</code> {@link Uri} you have to modify the 62 * <em>any</em> app, and remain in effect until you change them. This level of access is 80 * don't need to define a subclass in code. Instead, you can include a FileProvider in your app 81 * by specifying it entirely in XML. To specify the FileProvider component itself, add a 109 * the FileProvider class and use the fully-qualified class name in the <code>android:name</code> 112 * A FileProvider can only generate a content URI for files in directories that you specif 583 final XmlResourceParser in = info.loadXmlMetaData( local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
convolve_test.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. 215 /* Set up guard blocks for an inner block centered in the outer block */ 259 uint8_t* const in = input(); local 264 UUT_->h8_(in, kInputStride, out, kOutputStride, filter8, 16, filter8, 16, 271 ASSERT_EQ(out[y * kOutputStride + x], in[y * kInputStride + x]) 276 uint8_t* const in = input() local 293 uint8_t* const in = input(); local 342 uint8_t* const in = input(); local 387 uint8_t* const in = input(); local 466 uint8_t* const in = input(); local 554 uint8_t* const in = input(); local [all...] |
/hardware/libhardware/modules/audio/ |
audio_hw.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 141 // in the buffer, but by the end of the sleep the buffer is considered 144 // On the subsequent out_write(), we measure the elapsed time spent in 146 // thereby accounting for drain in the alsa buffer during mixing. 216 struct stub_stream_in *in = (struct stub_stream_in *)stream; local 217 in->last_read_time_us = 0; 248 struct stub_stream_in *in = (struct stub_stream_in *)stream; local 254 const bool standby = in->last_read_time_us == 0; 256 0 : now - in->last_read_time_us 428 struct stub_stream_in *in; local [all...] |