/external/curl/lib/ |
curl_addrinfo.c | 10 * This software is licensed as described in the file COPYING, which 28 # include <netinet/in.h> 41 # include <in.h> 53 /* The last 3 #include files should be in this order */ 102 * There should be no single call to system's getaddrinfo() in the 186 /* add this element last in the return list */ 235 * Curl_addrinfo defined in "lib/curl_addrinfo.h" 249 * hostent defined in <netdb.h> 375 * This function takes an internet address, in binary form, as input parameter 377 * returns a Curl_addrinfo chain filled in correctly with information for th 459 struct in_addr in; local [all...] |
/external/dagger2/compiler/src/test/java/dagger/internal/codegen/ |
ComponentBuilderTest.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 336 .in(componentFile); method 359 .in(componentFile); 375 .in(builder); 396 .in(componentFile); 417 .in(componentFile); 438 .in(componentFile); 481 .in(componentFile); 505 .in(componentFile) [all...] |
/external/deqp/modules/gles3/functional/ |
es3fShaderPackingFunctionTests.cpp | 8 * you may not use this file except in compliance with the License. 13 * Unless required by applicable law or agreed to in writing, software 173 // Random values, mostly in range. 194 const void* in = &inputs[0]; local 198 m_executor->execute((int)inputs.size(), &in, &out); 222 m_testCtx.getLog() << TestLog::Message << "ERROR: Mismatch in value " << valNdx 282 const void* in = &inputs[0]; local 286 m_executor->execute((int)inputs.size(), &in, &out); 311 m_testCtx.getLog() << TestLog::Message << "ERROR: Mismatch in value " << valNdx << ",\n" 364 // Random values, mostly in range 385 const void* in = &inputs[0]; local 473 const void* in = &inputs[0]; local 581 const void* in = &inputs[0]; local 684 const void* in = &inputs[0]; local [all...] |
/external/dnsmasq/src/ |
util.c | 8 This program is distributed in the hope that it will be useful, 51 static uint32 in[12]; variable 60 !read_write(fd, (unsigned char *)&in, sizeof(in), 1)) 74 for (i = 0;i < 12;++i) t[i] = in[i] ^ seed[12 + i]; 93 if (!++in[0]) if (!++in[1]) if (!++in[2]) ++in[3]; 103 static int check_name(char *in) [all...] |
/external/drm_hwcomposer/ |
separate_rects.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 74 void separate_rects(const std::vector<Rect<TNum>> &in, 78 // The sweep stops at each vertical edge of each input rectangle in sorted 79 // order of x-coordinate. At each stop, the sweep line is examined in order of 83 // that set is recorded in along with the the y-coordinate it happened at in a 88 if (in.size() > IdSet<TId>::max_elements) { 109 for (TId i = 0; i < in.size(); i++) { 110 const Rect<TNum> &rect = in[i] 330 std::vector<Rect> in; local [all...] |
/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/ |
BufferPeriod.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 28 * This class records the buffer period of the audio player or recorder when in Java mode. 29 * Currently the accuracy is in 1ms. 41 private long mVar; // variance in nanoseconds^2 164 Bundle in = source.readBundle(getClass().getClassLoader()); local 165 mMaxBufferPeriod = in.getInt("mMaxBufferPeriod"); 166 mBufferPeriod = in.getIntArray("mBufferPeriod"); 167 mExpectedBufferPeriod = in.getInt("mExpectedBufferPeriod"); 168 mCallbackTimes = in.getParcelable("mCallbackTimes") [all...] |
/external/e2fsprogs/lib/ext2fs/ |
sparse_io.c | 414 const char *in = buf; local 429 memcpy(sm->blocks[cur_block] + offset, in, count); 443 in + (i * channel->block_size),
|
/external/e2fsprogs/util/ |
subst.c | 107 * The substitution variable must all be in the of [0-9A-Za-z_]. 327 FILE *in, *out, *old = NULL; local 338 in = fopen(optarg, "r"); 339 if (!in) { 343 parse_config_file(in); 344 fclose(in); 359 in = fopen(argv[optind], "r"); 360 if (!in) { 366 in = stdin; 410 while (!feof(in)) { [all...] |
/external/eigen/unsupported/Eigen/src/Eigenvalues/ |
ArpackSelfAdjointEigenSolver.h | 16 // Eigen is distributed in the hope that it will be useful, but WITHOUT ANY 66 * The default constructor is for cases in which the user intends to 81 * \param[in] A Self-adjoint matrix whose eigenvalues / eigenvectors will 84 * \param[in] B Self-adjoint matrix for the generalized eigenvalue problem. 85 * \param[in] nbrEigenvalues The number of eigenvalues / eigenvectors to compute. 87 * \param[in] eigs_sigma String containing either "LM", "SM", "LA", or "SA", with 90 * value can contain floating point value in string form, in which case the 92 * \param[in] options Can be #ComputeEigenvectors (default) or #EigenvaluesOnly. 93 * \param[in] tol What tolerance to find the eigenvalues to. Default is 0, whic 515 Scalar *in = workd + ipntr[0] - 1; local 566 Scalar *in = workd + ipntr[0] - 1; local [all...] |
/external/guava/guava/src/com/google/common/base/ |
Predicates.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 98 * components evaluates to {@code true}. The components are evaluated in 100 * predicate is found. It defensively copies the iterable passed in, so future 112 * components evaluates to {@code true}. The components are evaluated in 114 * predicate is found. It defensively copies the array passed in, so future 125 * components evaluate to {@code true}. The components are evaluated in 137 * components evaluates to {@code true}. The components are evaluated in 139 * true predicate is found. It defensively copies the iterable passed in, so 151 * components evaluates to {@code true}. The components are evaluated in 230 public static <T> Predicate<T> in(Collection<? extends T> target) { method in class:Predicates [all...] |
/external/guava/guava/src/com/google/common/collect/ |
ComputingConcurrentHashMap.java | 5 * in compliance with the License. You may obtain a copy of the License at 9 * Unless required by applicable law or agreed to in writing, software distributed under the License 407 private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { 408 in.defaultReadObject(); 409 MapMaker mapMaker = readMapMaker(in); 411 readEntries(in);
|
/external/guava/guava/src/com/google/common/io/ |
ByteSource.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 52 * typically implemented by opening a stream using one of the methods in the first category, doing 82 * @throws IOException if an I/O error occurs in the process of opening the stream 88 * not required to be a {@link BufferedInputStream} in order to allow implementations to simply 95 * @throws IOException if an I/O error occurs in the process of opening the stream 96 * @since 15.0 (in 14.0 with return type {@link BufferedInputStream}) 99 InputStream in = openStream(); local 100 return (in instanceof BufferedInputStream) 101 ? (BufferedInputStream) in 125 InputStream in = closer.register(openStream()); local 152 InputStream in = closer.register(openStream()); local 162 InputStream in = closer.register(openStream()); local 219 InputStream in = closer.register(openStream()); local 239 InputStream in = closer.register(openStream()); local 257 InputStream in = closer.register(openStream()); local 281 InputStream in = closer.register(openStream()); local [all...] |
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/ |
Predicates.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 95 * components evaluates to {@code true}. The components are evaluated in 97 * predicate is found. It defensively copies the iterable passed in, so future 109 * components evaluates to {@code true}. The components are evaluated in 111 * predicate is found. It defensively copies the array passed in, so future 122 * components evaluate to {@code true}. The components are evaluated in 134 * components evaluates to {@code true}. The components are evaluated in 136 * true predicate is found. It defensively copies the iterable passed in, so 148 * components evaluates to {@code true}. The components are evaluated in 194 public static <T> Predicate<T> in(Collection<? extends T> target) { method in class:Predicates [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
ObjectArraysTest.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 37 String[] in = new String[0]; local 38 String[] empty = ObjectArrays.newArray(in, 0);
|
/external/guava/guava-gwt/test-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/ |
AtomicLongMapTest.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 42 Map<String, Long> in = ImmutableMap.of("1", 1L, "2", 2L, "3", 3L); local 43 AtomicLongMap<String> map = AtomicLongMap.create(in); 292 Map<String, Long> in = ImmutableMap.of("1", 1L, "2", 2L, "3", 3L); local 303 map.putAll(in);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ObjectArraysTest.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 69 String[] in = new String[0]; local 70 String[] empty = ObjectArrays.newArray(in, 0);
|
/external/guice/core/src/com/google/inject/internal/util/ |
LineNumbers.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 63 InputStream in = type.getResourceAsStream("/" + type.getName().replace('.', '/') + ".class"); local 64 if (in != null) { 65 new ClassReader(in).accept(new LineNumberReader(), ClassReader.SKIP_FRAMES);
|
/external/guice/examples/src/example/xml/ |
XmlBeanModule.java | 48 Reader in = new InputStreamReader(xmlUrl.openStream()); local 49 Parsers.parse(in, beans.getContentHandler());
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
Punycode.java | 19 * @hide Only a subset of ICU is exposed in Android 63 * point (for use in representing integers) in the range 0 to 108 * (when used for representing integers) is d, which must be in the 110 * nonzero, in which case the uppercase form is used. 142 * convert extended ones to UTF-32 in cpBuffer (caseFlag in sign bit): 278 int n, i, bias, basicLength, j, in, oldi, w, k, digit, t, local 320 for(in=basicLength>0 ? basicLength+1 : 0; in<srcLength; /* no op */) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
SelectFormat.java | 47 * <li>German differs from English in that the gender of nouns is rather 52 * <li>French has only two genders; as in German the gender of nouns 54 * are the opposite of those in German. The gender affects 65 * but similar in grammatical use. 68 * <p><b>Note:</b>For the gender of a <i>person</i> in a given sentence, 83 * each noun and per language, e.g., in resource bundles. 100 * move bits of the sentence in and out of the select argument of a message. 127 * <p>Each message is a MessageFormat pattern string enclosed in {curly braces}. 185 * Patterns and their interpretation are specified in the class description. 308 * @return the string buffer passed in as toAppendTo, with formatted tex [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/ |
PunycodeReference.java | 19 and distribute it in any way that does not diminish the rights 37 * The implementation is direct port of C code in the RFC 71 /* point (for use in representing integers) in the range 0 to */ 81 /* (when used for representing integers) is d, which needs to be in */ 83 /* nonzero, in which case the uppercase form is used. The behavior */ 226 int[] in = new int[input.length()]; local 232 in[inLen++]=ch; 240 rc = encode(inLen,in,case_flags, outLen, output); 262 throw new StringPrepParseException("Illegal char found in the input",StringPrepParseException.ILLEGAL_CHAR_FOUND) 272 char[] in = input.toString().toCharArray(); local 304 b, j, in, oldi, w, k, digit, t; local [all...] |
/external/icu/icu4c/source/common/ |
punycode.cpp | 33 and distribute it in any way that does not diminish the rights 90 * (when used for representing integers) is d, which must be in the 92 * nonzero, in which case the uppercase form is used. 111 * point (for use in representing integers) in the range 0 to 158 * The following code omits the {parts} of the pseudo-algorithm in the spec 205 * convert extended ones to UTF-32 in cpBuffer (caseFlag in sign bit): 381 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t, local 442 for(in=basicLength>0 ? basicLength+1 : 0; in<srcLength; /* no op */) [all...] |
/external/icu/icu4c/source/test/cintltst/ |
spreptst.c | 108 const char *in; member in struct:ConformanceTestCases 324 const char* src = conformanceTestCases[i].in; 353 understood universally, rather than in the context of a particular 376 appended "@" and should appear in the form "xxxx@" (note: no domain 411 "\\u0c15\\u0c36\\u0c30\\u0c2c\\u0c3e\\u0c26@cs7.dillons.co.uk.203.119.193.in-addr.arpa",
|
/external/icu/icu4c/source/tools/icuswap/ |
icuswap.cpp | 106 FILE *in, *out; local 121 fprintf(stderr, "Warning: icuswap is an obsolete tool and it will be removed in the next ICU release.\nPlease use the icupkg tool instead.\n"); 163 in=out=NULL; 167 in=fopen(argv[1], "rb"); 168 if(in==NULL) { 174 length=fileSize(in); 197 if(length!=(int32_t)fread(data, 1, length, in)) { 203 fclose(in); 204 in=NULL; 206 /* swap the data in-place * [all...] |
/external/icu/icu4c/source/tools/toolutil/ |
pkg_gencmn.c | 48 All item names are stored as char * strings in one block between the ToC table 55 The data items are stored in the sorted order of their names. 126 FileStream *in, *file; local 152 in = T_FileStream_stdin(); 154 in = T_FileStream_open(dataFile, "r"); 155 if(in == NULL) { 170 while((s != NULL && *s != 0) || (s=T_FileStream_readLine(in, (line=linePtr), 210 if(in!=T_FileStream_stdin()) { 211 T_FileStream_close(in); 215 fprintf(stderr, "gencmn: no files listed in %s\n", dataFile == NULL ? "<stdin>" : dataFile) [all...] |