HomeSort by relevance Sort by last modified time
    Searched refs:bunch (Results 1 - 25 of 37) sorted by null

1 2

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/primitives/
ImmutablePrimitivesTest.java 27 BunchOfPrimitives bunch = new BunchOfPrimitives(10, 40.0, true); local
28 String dump = yaml.dump(bunch);
29 assertEquals("!!" + bunch.getClass().getCanonicalName() + " [10, 40.0, true]\n", dump);
31 assertEquals(loaded.toString(), bunch, loaded); local
37 BunchOfPrimitives bunch = (BunchOfPrimitives) yaml.load(dump); local
39 bunch.getPrimitiveInt());
ImmutablePrimitivesRepresenter.java 33 BunchOfPrimitives bunch = (BunchOfPrimitives) data; local
36 Arrays.asList(new Object[] { bunch.getPrimitiveInt(),
37 bunch.getPrimitiveDouble(), bunch.primitiveBoolean }), true);
BunchOfPrimitives.java 51 BunchOfPrimitives bunch = (BunchOfPrimitives) obj; local
52 return primitiveInt == bunch.primitiveInt;
  /external/blktrace/btreplay/
btreplay.c 1112 * next_bunch - Retrieve next bunch of AIOs to process
1114 * @bunch: Bunch information
1116 * Returns TRUE if we recovered a bunch of IOs, else hit EOF
1118 static int next_bunch(struct thr_info *tip, struct io_bunch *bunch)
1122 result = read(tip->ifd, &bunch->hdr, sizeof(bunch->hdr));
1123 if (result != sizeof(bunch->hdr)) {
1131 assert(bunch->hdr.npkts <= BT_MAX_PKTS);
1133 count = bunch->hdr.npkts * sizeof(struct io_pkt)
1318 struct io_bunch bunch; local
    [all...]
  /external/llvm/test/Bindings/OCaml/
irreader.ml 10 libLLVMCore.a, so it's better to write a big test than a bunch of
passmgr_builder.ml 10 libLLVMCore.a, so it's better to write a big test than a bunch of
vectorize.ml 10 libLLVMCore.a, so it's better to write a big test than a bunch of
ipo.ml 10 libLLVMCore.a, so it's better to write a big test than a bunch of
linker.ml 10 libLLVMCore.a, so it's better to write a big test than a bunch of
scalar_opts.ml 10 libLLVMCore.a, so it's better to write a big test than a bunch of
target.ml 9 libLLVMCore.a, so it's better to write a big test than a bunch of
  /external/blktrace/btreplay/doc/
btreplay.tex 133 multiple sequential (in time) IOs and put them in a single \emph{bunch} of
143 \item[\texttt{--max-bunch-time}] This is the amount of time to encompass
144 in one bunch -- only IOs within the time specified are eligible
149 \item[\texttt{--max-pkts}] A \emph{bunch} size can be anywhere from
150 1 to 512 packets in size and by default we max a bunch to contain no
152 decrease the maximum \emph{bunch} size. Refer to section~\ref{sec:c-o-M}
160 thread manages the submitting of AIOs per bunch in the record data file,
204 \item Bunching of IOs results in reduced time amongst IOs within a bunch.
252 [ -m <nsec> : --max-bunch-time=<nsec> ] Default: 10 msec
302 \texttt{--max-bunch-time}\\Set Maximum Time Per Bunch
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/paste/debug/
watchthreads.py 13 from paste.util.template import HTMLTemplate, bunch namespace
213 thread = bunch()
  /external/v8/test/mjsunit/regress/
regress-4800.js 11 // Create a bunch of double values with long live ranges.
  /bionic/libdl/
Android.mk 47 # with missing symbols. Since this library is just a bunch of stubs, we set
  /external/v8/test/mjsunit/compiler/
pic.js 50 // Create a bunch of objects with different layouts.
  /bionic/libc/tools/
genlibgcc_compat.py 27 * into the final libfoo.so. However, doing so will link a bunch of other __cxa
  /external/v8/build/
gn_helpers.py 107 """Converts a string with a bunch of gn arg assignments into a Python dict.
  /external/v8/test/mjsunit/wasm/
ffi.js 141 // Check a bunch of uses of the arguments object.
import-table.js 140 // Check a bunch of uses of the arguments object.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
branch.s 14 ; The size of a bunch of short branches is start2-start = 42,
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
ccompiler.py 588 """Link a bunch of stuff together to create a static library file.
589 The "bunch of stuff" consists of the list of object files supplied
621 """Link a bunch of stuff together to create an executable or
624 The "bunch of stuff" consists of the list of object files supplied
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
ccompiler.py 588 """Link a bunch of stuff together to create a static library file.
589 The "bunch of stuff" consists of the list of object files supplied
621 """Link a bunch of stuff together to create an executable or
624 The "bunch of stuff" consists of the list of object files supplied
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
ccompiler.py 588 """Link a bunch of stuff together to create a static library file.
589 The "bunch of stuff" consists of the list of object files supplied
621 """Link a bunch of stuff together to create an executable or
624 The "bunch of stuff" consists of the list of object files supplied
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
ccompiler.py 588 """Link a bunch of stuff together to create a static library file.
589 The "bunch of stuff" consists of the list of object files supplied
621 """Link a bunch of stuff together to create an executable or
624 The "bunch of stuff" consists of the list of object files supplied
    [all...]

Completed in 310 milliseconds

1 2