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

<<31323334353637383940>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
genperf.c 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
79 ub4 blen, /* b in 0..blen-1, power of 2 */
80 ub4 *scramble) /* used in final hash */
85 /* A way to make the 1-byte values in tab bigger */
159 ub4 smax; /* scramble[] values in 0..smax-1, a power of 2 *
252 FILE *in, *out; local
    [all...]
  /external/chromium_org/third_party/zlib/
inflate.c 3 * For conditions of distribution and use, see copyright notice in zlib.h
16 * - Use pointers for available input and output checking in inffast.c
17 * - Remove input and output counters in inffast.c
19 * - Remove unnecessary second byte pull from length extra in inffast.c
20 * - Unroll direct copy to three copies per loop in inffast.c
24 * - Correct filename to inffixed.h for fixed tables in inflate.c
25 * - Make hbuf[] unsigned char to match parameter type in inflate.c
27 * to avoid negation problem on Alphas (64 bit) in inflate.c
30 * - Add comments on state->bits assertion in inffast.c
31 * - Add comments on op field in inftrees.
599 unsigned in, out; \/* save starting available input and output *\/ local
    [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/dexmaker/src/dx/java/com/android/dx/io/instructions/
DecodedInstruction.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
33 * match the names given in the Dalvik instruction format
35 * arbitrarily alphabetically from A. In this class, non-register
55 * though it is stored in an {@code int}.
69 public static DecodedInstruction decode(CodeInput in) throws EOFException {
70 int opcodeUnit = in.read();
74 return format.decode(opcodeUnit, in);
85 ShortArrayCodeInput in = new ShortArrayCodeInput(encodedInstructions); local
88 while (in.hasMore())
    [all...]
  /external/dnsmasq/src/
util.c 8 This program is distributed in the hope that it will be useful,
49 static uint32 in[12]; variable
58 !read_write(fd, (unsigned char *)&in, sizeof(in), 1))
72 for (i = 0;i < 12;++i) t[i] = in[i] ^ seed[12 + i];
91 if (!++in[0]) if (!++in[1]) if (!++in[2]) ++in[3];
101 static int check_name(char *in)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
CompileErrorCheck.java 16 * information in monitor.properties.
120 BufferedReader in = null;
124 in = new BufferedReader(new FileReader(file));
130 while ((aLine = in.readLine()) != null) {
145 if (in != null) {
147 in.close();
190 //send email notification that there are compile errors in the build
206 mailer.sendMultiPartMessage("Compile errors in build", "Compile errors in build. See attached compile logs.", logFiles);
211 System.out.println("Compile errors detected in "+nameWithPlugin)
    [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/f2fs-tools/lib/
libf2fs.c 220 static void TEA_transform(unsigned int buf[4], unsigned int const in[])
224 __u32 a = in[0], b = in[1], c = in[2], d = in[3];
278 __u32 in[8], buf[4]; local
293 str2hashbuf(p, len, in, 4);
294 TEA_transform(buf, in);
406 * the file system. In this case, we should not format.
414 MSG(0, "\tError: In use by the system!\n")
    [all...]
  /external/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 */
68 FT_Int n; /* index of contour in outline */
69 FT_UInt first; /* index of first point in contour */
85 FT_Int last; /* index of last point in contour */
334 /* documentation is in ftoutln.h */
350 /* documentation is in ftoutln.h */
395 /* documentation is in ftoutln.h */
450 /* documentation is in ftoutln.h *
935 FT_Vector in, out, shift; 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
94 * components evaluates to {@code true}. The components are evaluated in
96 * predicate is found. It defensively copies the iterable passed in, so future
108 * components evaluates to {@code true}. The components are evaluated in
110 * predicate is found. It defensively copies the array passed in, so future
121 * components evaluate to {@code true}. The components are evaluated in
133 * components evaluates to {@code true}. The components are evaluated in
135 * true predicate is found. It defensively copies the iterable passed in, so
147 * components evaluates to {@code true}. The components are evaluated in
226 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
404 private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
405 in.defaultReadObject();
406 MapMaker mapMaker = readMapMaker(in);
408 readEntries(in);
  /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
91 * components evaluates to {@code true}. The components are evaluated in
93 * predicate is found. It defensively copies the iterable passed in, so future
105 * components evaluates to {@code true}. The components are evaluated in
107 * predicate is found. It defensively copies the array passed in, so future
118 * components evaluate to {@code true}. The components are evaluated in
130 * components evaluates to {@code true}. The components are evaluated in
132 * true predicate is found. It defensively copies the iterable passed in, so
144 * components evaluates to {@code true}. The components are evaluated in
190 public static <T> Predicate<T> in(Collection<? extends T> target) { method in class:Predicates
    [all...]
  /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/icu/icu4c/source/common/
punycode.cpp 31 and distribute it in any way that does not diminish the rights
88 * (when used for representing integers) is d, which must be in the
90 * nonzero, in which case the uppercase form is used.
109 * point (for use in representing integers) in the range 0 to
156 * The following code omits the {parts} of the pseudo-algorithm in the spec
203 * convert extended ones to UTF-32 in cpBuffer (caseFlag in sign bit):
379 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t, local
440 for(in=basicLength>0 ? basicLength+1 : 0; in<srcLength; /* no op */)
    [all...]
  /external/icu/icu4c/source/layout/
ArabicShaping.cpp 66 // defined in the above order, and have masks that
67 // are all in the same nibble.
128 // iterate in logical order, store tags in visible order
167 le_int32 in, e, out = 0, dir = 1; local
175 for (in = offset, e = offset + charCount; in < e; in += 1, out += dir) {
176 LEUnicode c = chars[in];
  /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 105 FILE *in, *out; local
120 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");
162 in=out=NULL;
166 in=fopen(argv[1], "rb");
167 if(in==NULL) {
173 length=fileSize(in);
196 if(length!=(int32_t)fread(data, 1, length, in)) {
202 fclose(in);
203 in=NULL;
205 /* swap the data in-place *
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
pkg_gencmn.c 46 All item names are stored as char * strings in one block between the ToC table
53 The data items are stored in the sorted order of their names.
124 FileStream *in, *file; local
150 in = T_FileStream_stdin();
152 in = T_FileStream_open(dataFile, "r");
153 if(in == NULL) {
168 while((s != NULL && *s != 0) || (s=T_FileStream_readLine(in, (line=linePtr),
208 if(in!=T_FileStream_stdin()) {
209 T_FileStream_close(in);
213 fprintf(stderr, "gencmn: no files listed in %s\n", dataFile == NULL ? "<stdin>" : dataFile)
    [all...]
  /external/iptables/iptables/
ip6tables-restore.c 163 "The -t option (seen in line %u) cannot be "
164 "used in ip6tables-restore.\n", line);
187 FILE *in; local
238 in = fopen(argv[optind], "re");
239 if (!in) {
249 else in = stdin;
252 while (fgets(buffer, sizeof(buffer), in)) {
396 /* we have counters in our input */
460 fclose(in);
iptables-restore.c 162 "The -t option (seen in line %u) cannot be "
163 "used in iptables-restore.\n", line);
187 FILE *in; local
238 in = fopen(argv[optind], "re");
239 if (!in) {
249 else in = stdin;
252 while (fgets(buffer, sizeof(buffer), in)) {
396 /* we have counters in our input */
460 fclose(in);
  /external/jpeg/
jccolor.c 44 * maximum red and maximum blue in order to get exact grayscales.
50 * For even more speed, we avoid doing any multiplications in the inner loop
57 * in the tables to save adding them separately in the inner loop.
67 * address, which can be held in a register in the inner loops on many
94 /* Allocate and fill in the conversion tables. */
319 static void copyquads(const UINT32 in[], UINT32 out0[], UINT32 out1[], UINT32 out2[], int col4)
322 UINT32 src0 = *in++;
323 UINT32 src1 = *in++
364 const UINT32* in = (const UINT32*)inptr; local
    [all...]
  /external/junit/src/junit/textui/
TestRunner.java 129 System.in.read();
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
PropertyInfo.java 5 * associated documentation files (the "Software"), to deal in the Software without restriction, including
10 * The above copyright notice and this permission notice shall be included in all copies or substantial
14 * LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
16 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
17 * USE OR OTHER DEALINGS IN THE SOFTWARE.
253 // a copy of the object back in.
254 ObjectInputStream in = new ObjectInputStream( local
256 obj = in.readObject();
SppPropertyInfo.java 5 * associated documentation files (the "Software"), to deal in the Software without restriction, including
10 * The above copyright notice and this permission notice shall be included in all copies or substantial
14 * LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
16 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
17 * USE OR OTHER DEALINGS IN THE SOFTWARE.
253 // a copy of the object back in.
254 ObjectInputStream in = new ObjectInputStream( local
256 obj = in.readObject();
  /external/libvorbis/vq/
bookutil.c 6 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
68 /* assumes the value patterning created by the tools in vq/ */
85 char *get_line(FILE *in){
87 if(feof(in))return NULL;
103 long c=fgetc(in);
131 int get_line_value(FILE *in,float *value){
148 int get_next_value(FILE *in,float *value){
150 if(get_line_value(in,value)){
151 value_line_buff=get_line(in);
159 int get_next_ivalue(FILE *in,long *ivalue)
237 FILE *in=fopen(filename,"r"); local
    [all...]

Completed in 1973 milliseconds

<<31323334353637383940>>