Home
last modified time | relevance | path

Searched refs:bunch (Results 1 – 25 of 265) sorted by relevance

1234567891011

/external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/primitives/
DImmutablePrimitivesTest.java27 BunchOfPrimitives bunch = new BunchOfPrimitives(10, 40.0, true); in testPrimitives() local
28 String dump = yaml.dump(bunch); in testPrimitives()
29 assertEquals("!!" + bunch.getClass().getCanonicalName() + " [10, 40.0, true]\n", dump); in testPrimitives()
31 assertEquals(loaded.toString(), bunch, loaded); in testPrimitives() local
37 BunchOfPrimitives bunch = (BunchOfPrimitives) yaml.load(dump); in testPrimitivesLong() local
39 bunch.getPrimitiveInt()); in testPrimitivesLong()
DImmutablePrimitivesRepresenter.java33 BunchOfPrimitives bunch = (BunchOfPrimitives) data; in representData() local
36 Arrays.asList(new Object[] { bunch.getPrimitiveInt(), in representData()
37 bunch.getPrimitiveDouble(), bunch.primitiveBoolean }), true); in representData()
DBunchOfPrimitives.java51 BunchOfPrimitives bunch = (BunchOfPrimitives) obj; in equals() local
52 return primitiveInt == bunch.primitiveInt; in equals()
/external/blktrace/btreplay/
Dbtreplay.c1136 static int next_bunch(struct thr_info *tip, struct io_bunch *bunch) in next_bunch() argument
1140 result = read(tip->ifd, &bunch->hdr, sizeof(bunch->hdr)); in next_bunch()
1141 if (result != sizeof(bunch->hdr)) { in next_bunch()
1149 assert(bunch->hdr.npkts <= BT_MAX_PKTS); in next_bunch()
1151 count = bunch->hdr.npkts * sizeof(struct io_pkt); in next_bunch()
1152 result = read(tip->ifd, &bunch->pkts, count); in next_bunch()
1270 static void process_bunch(struct thr_info *tip, struct io_bunch *bunch) in process_bunch() argument
1273 struct iocb *list[bunch->hdr.npkts]; in process_bunch()
1275 assert(0 < bunch->hdr.npkts && bunch->hdr.npkts <= BT_MAX_PKTS); in process_bunch()
1276 while (!is_send_done(tip) && (i < bunch->hdr.npkts)) { in process_bunch()
[all …]
/external/blktrace/btreplay/doc/
Dbtreplay.tex133 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/grpc-grpc/tools/buildgen/
Dmako_renderer.py31 import bunch
112 bunch.merge_json(json_dict, yaml.load(dict_file.read()))
125 dictionary[k] = bunch.to_bunch(v)
/external/libchrome/libchrome_tools/patch/
Dmemory_linux.patch1 # this file used to have a bunch of __libc_* extern definitions, android complains only about this …
/external/markdown/tests/misc/
Dsome-test.txt40 with a bunch of items
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
DREADME4 I have added a cheezy perl script for generating a bunch of test cases
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/SimplifyCFG/
DPhiEliminate.ll1 ; Test a bunch of cases where the cfg simplification code should
/external/swiftshader/third_party/LLVM/test/Transforms/SimplifyCFG/
DPhiEliminate.ll1 ; Test a bunch of cases where the cfg simplification code should
/external/llvm/test/Transforms/SimplifyCFG/
DPhiEliminate.ll1 ; Test a bunch of cases where the cfg simplification code should
/external/mesa3d/docs/relnotes/
D3.1128 A bunch of new device driver functions have been added. See src/dd.h
130 a bunch of functions like these to make writing hardware drivers easier.
/external/autotest/server/site_tests/servo_ConsoleStress/
Dcontrol.servo_micro14 DOC = """Run the control a bunch. Make sure the output doesn't change
Dcontrol.ec14 DOC = """Run the control a bunch. Make sure the output doesn't change
Dcontrol.cr5014 DOC = """Run the control a bunch. Make sure the output doesn't change
Dcontrol14 DOC = """Run the control a bunch. Make sure the output doesn't change
Dcontrol.servo_v414 DOC = """Run the control a bunch. Make sure the output doesn't change
/external/swiftshader/third_party/llvm-7.0/llvm/test/Verifier/
Ddbg-typerefs.ll7 ; Make a bunch of type references.
/external/llvm/test/Verifier/
Ddbg-typerefs.ll7 ; Make a bunch of type references.
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bindings/OCaml/
Dvectorize.ml10 libLLVMCore.a, so it's better to write a big test than a bunch of
/external/llvm/test/Bindings/OCaml/
Dvectorize.ml10 libLLVMCore.a, so it's better to write a big test than a bunch of
Dirreader.ml10 libLLVMCore.a, so it's better to write a big test than a bunch of
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
Dtarget.ml7 libLLVMCore.a, so it's better to write a big test than a bunch of
/external/python/cpython2/Demo/scripts/
DREADME22 update.py Update a bunch of files according to a script.

1234567891011