HomeSort by relevance Sort by last modified time
    Searched defs:in (Results 1501 - 1525 of 3217) sorted by null

<<61626364656667686970>>

  /external/fio/
options.c 751 * Return next name in the string. Files are separated with ':'. If the ':'
987 * The code in verify_io_u_pattern assumes a single byte
1089 log_err("fio: job <%s> has write bit set, but fio is in"
1310 .help = "Directory to store files in",
1561 .help = "Number of IO buffers to keep in flight",
1574 .help = "Number of IO buffers to submit in one go",
1588 .help = "Number of IO buffers to retrieve in one go",
3802 char in[OPT_LEN_MAX+1]; local
    [all...]
server.c 14 #include <netinet/in.h>
838 struct cmd_sendfile_reply *in; local
843 in = (struct cmd_sendfile_reply *) cmd->payload;
844 in->size = le32_to_cpu(in->size);
845 in->error = le32_to_cpu(in->error);
846 if (in->error) {
848 rep->error = in->error;
851 rep->data = smalloc(in->size)
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
PredicatesTest.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
697 Predicate<Integer> isOneOrFive = Predicates.in(nums);
712 .addEqualityGroup(Predicates.in(nums), Predicates.in(nums),
713 Predicates.in(sameOrder), Predicates.in(differentOrder))
714 .addEqualityGroup(Predicates.in(differentNums))
720 checkSerialization(Predicates.in(Arrays.asList(1, 2, 3, null)));
733 Predicate<Integer> isFalse = Predicates.in(nums)
    [all...]
  /external/guice/lib/build/
safesax.jar 
  /external/icu/android_icu4j/src/main/java/android/icu/text/
MeasureFormat.java 51 // If you update the examples in the doc, don't forget to update MesaureUnitTest.TestExamplesInDocs too.
178 * In these cases formatMeasures formats as 5:37:23 instead of 5h, 37m, 23s.
288 * @param pos Identifies a field in the formatted text.
336 * responsibility to have the appropriate values in appropriate order,
338 * in descending order, with all but the last Measure having integer values
353 * responsibility to have the appropriate values in appropriate order,
359 * @param lowValue low value in range
360 * @param highValue high value in range
471 * @param measure the measure object. In above example, 3.5 meters.
472 * @param perUnit the per unit. In above example, it is MeasureUnit.SECON
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberRegression.java 116 * DecimalFormatSymbols should be cloned in the ctor DecimalFormat.
442 * never contain the monetary separator! Decimal separator in pattern is
455 errln("ERROR in test: want decimal sep != monetary sep");
731 * This is not a reproducable doc error in 116 source code.
1365 double in = Double.valueOf(DATA[i]).doubleValue(); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
caltest.cpp 60 out += UnicodeString(" (in DST), zone=");
796 verify765("1997 first Tuesday in June = ", c, 1997, UCAL_JUNE, 3);
802 verify765("1997 last Tuesday in June = ", c, 1997, UCAL_JUNE, 24);
811 verify765("1997 zero-th Tuesday in June = ", status);
818 verify765("1997 Tuesday in week 1 of June = ", c, 1997, UCAL_JUNE, 3);
824 verify765("1997 Tuesday in week 5 of June = ", c, 1997, UCAL_JULY, 1);
834 verify765("1997 Tuesday in week 0 of June = ", status);
837 * resolve to a date in Dec 1996; that is, to behave as if
840 * desired. Using YEAR in combination with WOY is ambiguous, and
841 * results in the first WOY/DOW day of the year satisfying th
2520 const CalFields in; member in struct:__anon12138
2618 const CalFields in; member in struct:__anon12139
    [all...]
numrgts.cpp 244 // {sfb} kind of silly in C++, just checking for new success
312 * DecimalFormatSymbols should be cloned in the ctor DecimalFormat.
320 // {sfb} One note about this test: if you pass in a pointer
323 // of the symbols, it is necessary to pass in a reference to the symbols
459 // {sfb} this is silly in C++
583 // {sfb} slightly converted into a round-trip test, since in C++
617 // {sfb} doesn't apply in C++
842 * never contain the monetary separator! Decimal separator in pattern is
865 errln("ERROR in test: want decimal sep != monetary sep");
2283 double in = DOUBLE[i\/3]; local
    [all...]
  /external/icu/icu4c/source/tools/pkgdata/
pkgdata.cpp 28 /* popen/pclose aren't defined in strict ANSI on Cygwin and MinGW */
167 /* This enum and the following char array should be kept in sync. */
248 "Specify a version when packaging in dll or static mode",
289 "%s: error in command line argument \"%s\"\n",
357 /* OK, fill in the options struct */
657 fprintf(stdout, "Warning: Providing a revision number with the -r option is recommended when packaging data in the current mode.\n");
852 /* Read in options file. */
887 * Given the base libName and version numbers, generate the libary file names and store it in libFileNames.
895 /* MinGW does not need the library prefix when building in dll mode. */
1992 FileStream *in; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
MeasureFormat.java 50 // If you update the examples in the doc, don't forget to update MesaureUnitTest.TestExamplesInDocs too.
186 * In these cases formatMeasures formats as 5:37:23 instead of 5h, 37m, 23s.
302 * @param pos Identifies a field in the formatted text.
342 * @provisional This API might change or be removed in a future release.
353 * responsibility to have the appropriate values in appropriate order,
355 * in descending order, with all but the last Measure having integer values
371 * responsibility to have the appropriate values in appropriate order,
377 * @param lowValue low value in range
378 * @param highValue high value in range
488 * @param measure the measure object. In above example, 3.5 meters
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
NumberRegression.java 112 * DecimalFormatSymbols should be cloned in the ctor DecimalFormat.
438 * never contain the monetary separator! Decimal separator in pattern is
451 errln("ERROR in test: want decimal sep != monetary sep");
727 * This is not a reproducable doc error in 116 source code.
1361 double in = Double.valueOf(DATA[i]).doubleValue(); local
    [all...]
  /external/libjpeg-turbo/
jquant2.c 36 * In the first pass over the image, we accumulate a histogram showing the
40 * in the same histogram cell.
44 * have as many boxes as desired colors. Then the mean color in each
52 * Heckbert-style quantizers vary a good deal in their policies for choosing
54 * used here have proved out well in experimental comparisons, but better ones
57 * In earlier versions of the IJG code, this module quantized in YCbCr color
64 * The present code works in the post-conversion color space, typically RGB.
66 * To improve the visual quality of the results, we actually work in scaled
67 * RGB space, giving G distances more weight than R, and R in turn more tha
1083 int in, out; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
fwd_txfm_impl_sse2.h 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.
37 // through iF (in raster order), intermediate variables are a0, b0, c0
38 // through f, and correspond to the in-place computations mapped to input
44 // In the comments, pN means cos(N pi /64) and mN is -cos(N pi /64),
123 // can never be equal to one. To increment in the non-zero case, we
222 // rounding steps in a row
587 const int16_t *in = input; local
    [all...]
loopfilter_sse2.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.
1407 unsigned char *in = src[idx8x8]; local
    [all...]
  /external/libxml2/
encoding.c 7 * [ISO-10646] UTF-8 and UTF-16 in Annexes
12 * described in Unicode Technical Report #4.
162 * @in: a pointer to an array of ASCII chars
163 * @inlen: the length of @in
165 * Take a block of ASCII chars in and try to convert it to an UTF-8
174 const unsigned char* in, int *inlen) {
176 const unsigned char* base = in;
177 const unsigned char* processed = in;
182 inend = in + (*inlen);
183 while ((in < inend) && (out - outstart + 5 < *outlen))
491 unsigned short* in = (unsigned short*) inb; local
729 unsigned short* in = (unsigned short*) inb; local
2057 xmlBufPtr in; local
2183 xmlBufPtr in; local
2414 xmlBufPtr in; local
2937 xmlParserInputPtr in; local
    [all...]
  /external/mesa3d/src/glsl/
ast.h 7 * to deal in the Software without restriction, including without limitation
13 * paragraph) shall be included in all copies or substantial portions of the
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
65 * ralloc_free in that case. */
72 * Print an AST node in something approximating the original GLSL code
121 unsigned column; /**< Column in the line. */
299 * This is done as a define instead of as an additional value in the enum s
366 unsigned in:1; member in struct:ast_type_qualifier::__anon19502::__anon19503
    [all...]
  /external/mesa3d/src/mesa/main/
ffvertex_prog.c 8 * "Software"), to deal in the Software without restriction, including
15 * next paragraph) shall be included in all copies or substantial portions
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
286 * NOTE: These are passed by value extensively in this file rather
288 * remembering they are just 32bits in size.
290 * GCC is smart enough to deal with these dword-sized structures in
519 * matrix out in one go
1493 struct ureg in = register_input(p, VERT_ATTRIB_TEX0+i); local
1500 struct ureg in = (!is_undef(out_texgen) ? local
1567 struct ureg in = register_input(p, VERT_ATTRIB_POINT_SIZE); local
    [all...]
  /external/opencv3/3rdparty/libjpeg/
jquant2.c 35 * In the first pass over the image, we accumulate a histogram showing the
39 * in the same histogram cell.
43 * have as many boxes as desired colors. Then the mean color in each
51 * Heckbert-style quantizers vary a good deal in their policies for choosing
53 * used here have proved out well in experimental comparisons, but better ones
56 * In earlier versions of the IJG code, this module quantized in YCbCr color
63 * The present code works in the post-conversion color space, typically RGB.
65 * To improve the visual quality of the results, we actually work in scaled
66 * RGB space, giving G distances more weight than R, and R in turn more tha
1114 int in, out; local
    [all...]
  /external/opencv3/3rdparty/libwebp/dec/
vp8l.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.
154 // to ReadSymbol, in order to pre-fetch enough bits.
322 // The huffman data is stored in red and green bytes.
424 const uint8_t* const in = (const uint8_t*)data; local
428 const uint8_t* const row_in = in + num_lines_in * in_stride;
450 return mb_h; // Num rows out == num rows in
535 const uint8_t* const in = (const uint8_t*)data; local
1093 const uint32_t* const in = dec->pixels_ + dec->width_ * dec->last_row_; local
1114 const uint8_t* const in = local
    [all...]
  /external/opencv3/3rdparty/libwebp/dsp/
lossless.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.
270 // In-place sum of each component with mod 256.
724 const __m128i in = _mm_loadu_si128((__m128i*)&argb_data[i]); local
725 const __m128i in_00g0 = _mm_and_si128(in, mask); // 00g0|00g0|...
729 const __m128i out = _mm_sub_epi8(in, in_0g0g);
752 const __m128i in = _mm_loadu_si128((__m128i*)data) local
    [all...]
  /external/selinux/libsemanage/src/
semanage_store.c 16 * This library is distributed in the hope that it will be useful,
128 /* A node used in a linked list of file contexts; used for sorting.
138 int meta; /* position of first meta char in path, -1 if none */
142 /* A node used in a linked list of buckets that contain
150 /* A node used in a linked list of netfilter rules.
396 /* THIS MUST BE THE FIRST FUNCTION CALLED IN THIS LIBRARY. If the
481 * configuration file. If semanage.conf file in the semanage
673 int in, out, retval = 0, amount_read, n, errsv = errno; local
682 if ((in = open(src, O_RDONLY)) == -1) {
693 close(in);
    [all...]
  /external/slf4j/integration/lib/
slf4j-simple-1.6.6.jar 
  /external/v8/test/cctest/
test-assembler-arm64.cc 2 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions in binary form must reproduce the above
10 // disclaimer in the documentation and/or other materials provided
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
70 // so it may appear multiple times in a test if the test has multiple exit
837 // Test bic into csp when the constant cannot be encoded in the immediate
6755 struct {double in; float expected;} test[] = { member in struct:__anon23895
6836 double in = test[i].in; local
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 2 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions in binary form must reproduce the above
10 // disclaimer in the documentation and/or other materials provided
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
430 void SetEffect(int arg, ExprEffect in) {
431 if (in.hasGC()) gc_.set(arg);
432 if (in.hasRawDef()) raw_def_.set(arg);
433 if (in.hasRawUse()) raw_use_.set(arg)
940 const Environment& in() { function in class:__anon24070::FunctionAnalyzer::Block
1046 Environment in = Environment::Merge(env, block_->in()); local
1052 Environment in = Environment::Merge(env, block_->in()); local
    [all...]
  /external/valgrind/coregrind/m_demangle/
cplus-dem.c 14 In addition to the permissions in the GNU Library General Public
19 restrictions do apply in other respects; for example, they cover
23 Libiberty is distributed in the hope that it will be useful,
39 /* This file lives in both GCC and libiberty. When making changes, please
42 #if 0 /* in valgrind */
46 #endif /* ! in valgrind */
48 #if 0 /* in valgrind */
50 #endif /* ! in valgrind */
52 #if 0 /* in valgrind *
165 const char *const in; member in struct:optable
    [all...]

Completed in 2515 milliseconds

<<61626364656667686970>>