Home
last modified time | relevance | path

Searched refs:tout (Results 1 – 25 of 41) sorted by relevance

12

/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/tar/
DTarArchiveEntryTest.java63 TarArchiveOutputStream tout = null; in testTarFileWithFSRoot() local
66 tout = new TarArchiveOutputStream(new FileOutputStream(f)); in testTarFileWithFSRoot()
68 tout.putArchiveEntry(t); in testTarFileWithFSRoot()
69 tout.closeArchiveEntry(); in testTarFileWithFSRoot()
72 tout.putArchiveEntry(t); in testTarFileWithFSRoot()
73 tout.write(new byte[] {'h', 'e', 'l', 'l', 'o', ' '}); in testTarFileWithFSRoot()
74 tout.closeArchiveEntry(); in testTarFileWithFSRoot()
78 tout.putArchiveEntry(t); in testTarFileWithFSRoot()
79 tout.write(new byte[] {'w', 'o', 'r', 'l', 'd'}); in testTarFileWithFSRoot()
80 tout.closeArchiveEntry(); in testTarFileWithFSRoot()
[all …]
/external/u-boot/tools/patman/
Dtools.py10 import tout
44 tout.Debug("Using output directory '%s'" % outdir)
47 tout.Debug("Using temporary directory '%s'" % outdir)
53 tout.Debug("Deleted temporary directory '%s'" % outdir)
91 tout.Debug("Using input directories %s" % indir)
/external/iputils/
Dclockdiff.c135 struct timeval tv1, tout; in measure() local
150 tout.tv_sec = tout.tv_usec = 0; in measure()
152 if (select(FD_SETSIZE, &ready, (fd_set *)0, (fd_set *)0, &tout)) { in measure()
211 tout.tv_sec = tmo/1000; in measure()
212 tout.tv_usec = (tmo - (tmo/1000)*1000)*1000; in measure()
216 (fd_set *)0, &tout)) <= 0) in measure()
312 struct timeval tv1, tout; in measure_opt() local
326 tout.tv_sec = tout.tv_usec = 0; in measure_opt()
328 if (select(FD_SETSIZE, &ready, (fd_set *)0, (fd_set *)0, &tout)) { in measure_opt()
391 tout.tv_sec = tmo/1000; in measure_opt()
[all …]
/external/scapy/scapy/contrib/
Dppi_cace.py60 tout = scale * float(val)
61 return tout
69 tout = int((scale * val) + 0.5)
70 return tout
/external/python/cpython2/Demo/metaclasses/
DSynch.py224 tout = 0.001
233 tout = 0.001
235 time.sleep(tout)
236 tout = tout*2
/external/python/cpython2/Lib/test/
Dtest_select.py34 for tout in (0, 1, 2, 4, 8, 16) + (None,)*10:
36 print 'timeout =', tout
37 rfd, wfd, xfd = select.select([p], [], [], tout)
Dtest_poll.py130 for tout in (0, 1000, 2000, 4000, 8000, 16000) + (-1,)*10:
131 fdlist = pollster.poll(tout)
/external/python/cpython3/Lib/test/
Dtest_select.py50 for tout in (0, 1, 2, 4, 8, 16) + (None,)*10:
52 print('timeout =', tout)
53 rfd, wfd, xfd = select.select([p], [], [], tout)
Dtest_poll.py130 for tout in (0, 1000, 2000, 4000, 8000, 16000) + (-1,)*10:
131 fdlist = pollster.poll(tout)
/external/u-boot/tools/binman/
Dcontrol.py18 import tout
91 tout.Init(options.verbosity)
120 tout.Uninit()
/external/tensorflow/tensorflow/python/ops/
Dfunctional_ops.py779 def partitioned_call(args, f, tout=None, executing_eagerly=None, config=None, argument
807 if tout is None:
808 tout = tuple(x.type for x in f.definition.signature.output_arg)
819 if executing_eagerly or len(tout):
822 args=args, Tout=tout, f=f, config_proto=config,
826 args=args, Tout=tout, f=f, config_proto=config,
837 list=attr_value_pb2.AttrValue.ListValue(type=tout))
855 tout,
/external/python/cpython2/Modules/
Dselectmodule.c201 PyObject *tout = Py_None; in select_select() local
211 &ifdlist, &ofdlist, &efdlist, &tout)) in select_select()
214 if (tout == Py_None) in select_select()
216 else if (!PyNumber_Check(tout)) { in select_select()
222 timeout = PyFloat_AsDouble(tout); in select_select()
507 PyObject *result_list = NULL, *tout = NULL; in poll_poll() local
511 if (!PyArg_UnpackTuple(args, "poll", 0, 1, &tout)) { in poll_poll()
516 if (tout == NULL || tout == Py_None) in poll_poll()
518 else if (!PyNumber_Check(tout)) { in poll_poll()
524 tout = PyNumber_Int(tout); in poll_poll()
[all …]
/external/iproute2/misc/
Dlnstat_util.c72 struct timeval *tout, in time_after() argument
75 if (now->tv_sec > last->tv_sec + tout->tv_sec) in time_after()
78 if (now->tv_sec == last->tv_sec + tout->tv_sec) { in time_after()
79 if (now->tv_usec > last->tv_usec + tout->tv_usec) in time_after()
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dimplementation_selector.cc46 auto tout = node_def->mutable_attr()->find("Tout"); in UpdateNodeDef() local
47 tout->second.mutable_list()->clear_type(); in UpdateNodeDef()
49 tout->second.mutable_list()->add_type(tout_dtype); in UpdateNodeDef()
Dfunction_optimizer_test.cc1521 auto& tout = AttrSlice(node).Find("Tout")->list(); in TEST_F() local
1523 ASSERT_EQ(1, tout.type_size()); in TEST_F()
1525 EXPECT_EQ(DT_FLOAT, tout.type(0)); in TEST_F()
1664 auto& tout = AttrSlice(node).Find("Tout")->list(); in TEST_F() local
1666 ASSERT_EQ(1, tout.type_size()); in TEST_F()
1668 EXPECT_EQ(DT_FLOAT, tout.type(0)); in TEST_F()
2004 auto& tout = AttrSlice(node).Find("Tout")->list(); in TEST_F() local
2007 ASSERT_EQ(3, tout.type_size()); in TEST_F()
2011 auto& tout = AttrSlice(node).Find("Tout")->list(); in TEST_F() local
2014 ASSERT_EQ(1, tout.type_size()); in TEST_F()
[all …]
Dfunction_optimizer.cc652 const AttrValue* tout = AttrSlice(func_node).Find("Tout"); in RemoveUnusedOutputsTypes() local
653 if (tout == nullptr || !tout->has_list()) return; in RemoveUnusedOutputsTypes()
656 if (specialization.active_outputs.size() == tout->list().type_size()) return; in RemoveUnusedOutputsTypes()
663 for (int i = 0; i < tout->list().type_size(); ++i) { in RemoveUnusedOutputsTypes()
666 DataType dt = tout->list().type(i); in RemoveUnusedOutputsTypes()
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-readobj/
Dbroken-group.test4 # RUN: %t.o >%tout.log 2>%terr.log
7 # RUN: FileCheck %s -check-prefix=GNU-STDOUT < %tout.log
/external/u-boot/drivers/mtd/
Dcfi_flash.c569 ulong tout, char *prompt) in flash_status_check() argument
576 tout *= (ulong)CONFIG_SYS_HZ / 1000; in flash_status_check()
578 tout = DIV_ROUND_UP(tout * (ulong)CONFIG_SYS_HZ, 1000); in flash_status_check()
588 if (get_timer(start) > tout) { in flash_status_check()
608 ulong tout, char *prompt) in flash_full_status_check() argument
612 retcode = flash_status_check(info, sector, tout, prompt); in flash_full_status_check()
660 ulong tout, char *prompt) in flash_status_poll() argument
669 tout *= (ulong)CONFIG_SYS_HZ / 1000; in flash_status_poll()
671 tout = DIV_ROUND_UP(tout * (ulong)CONFIG_SYS_HZ, 1000); in flash_status_poll()
700 if (get_timer(start) > tout) { in flash_status_poll()
/external/u-boot/arch/arm/include/asm/arch-spear/
Dspr_emi.h23 u32 tout; member
/external/python/cpython2/Demo/tkinter/guido/
DManPage.py64 def avail(fp=fp, tout=0.0, select=select): argument
65 return select([fp], [], [], tout)[0]
/external/ppp/pppd/
Dtty.c991 struct timeval levelt, tout, *top; local
1096 tout.tv_sec = 0;
1097 tout.tv_usec = 10000;
1102 top = &tout;
1109 top = &tout;
/external/python/google-api-python-client/samples/prediction/
Dlanguage_id.txt4 …e p�re Joseph, c'est vrai; mais son nom � lui n'�tait jamais prononc� que tout bas, tant �tait gra…
15tout propos; battez-vous d'autant plus que les duels sont d�fendus, et que, par cons�quent, il y a…
22 … des livres que nous l�mes pour arriver � ce but remplirait un feuilleton tout entier, ce qui sera…
112 …omb national, il n'importe, et l'argent n'est rien: -- cette lettre �tait tout. J'eusse mieux aim�…
117tout naturellement, selon son habitude, �tre l'objet de la conversation et �couta. Cette fois, d'A…
123 …rie par la grande porte, sous laquelle d'Artagnan en arrivant avait remarqu� un cheval tout sell�."
128 …u po�te n'est pas toujours ce qui impressionne la masse des lecteurs. Or, tout en admirant, comme …
135 "French", "Et l'inconnu, tout en marmottant, se dirigea vers la cuisine."
142 …ant que si pareille chose �tait arriv�e � Paris, vous vous en repentiriez tout de suite, tandis qu…
146 …Un autre coup, qui lui entama le front, le renversa presque en m�me temps tout sanglant et presque…
[all …]
/external/icu/icu4j/perf-tests/data/conversion/
Dfrench.txt11 Unicode transforme tout cela !
/external/icu/icu4c/source/data/locales/
Dfr_CA.txt155 "tout",
187 "tout",
Dfr.txt387 "tout",
417 "tout",
434 "tout",
464 "tout",

12