Home
last modified time | relevance | path

Searched refs:how_many (Results 1 – 12 of 12) sorted by relevance

/external/tensorflow/tensorflow/examples/speech_commands/
Dinput_data.py505 def get_data(self, how_many, offset, model_settings, background_frequency, argument
534 if how_many == -1:
537 sample_count = max(0, min(how_many, len(candidates) - offset))
548 if how_many == -1 or pick_deterministically:
636 def get_unprocessed_data(self, how_many, model_settings, mode): argument
650 if how_many == -1:
653 sample_count = how_many
667 if how_many == -1:
Dwav_to_features_test.py44 def _saveWavFolders(self, root_dir, labels, how_many): argument
49 for i in range(how_many):
Dtrain_test.py52 def _saveWavFolders(self, root_dir, labels, how_many): argument
57 for i in range(how_many):
Dinput_data_test.py46 def _saveWavFolders(self, root_dir, labels, how_many): argument
51 for i in range(how_many):
/external/v8/src/
Deh-frame.h225 void Skip(int how_many) { in Skip() argument
226 DCHECK_GE(how_many, 0); in Skip()
227 next_ += how_many; in Skip()
/external/toolchain-utils/crosperf/
Dresults_report_unittest.py110 def _InjectSuccesses(experiment, how_many, keyvals, for_benchmark=0, argument
143 MakeSuccessfulRun(n) for n in xrange(how_many))
/external/python/cpython3/Objects/
Dunicodeobject.c1429 Py_ssize_t how_many, int check_maxchar) in _copy_characters() argument
1434 assert(0 <= how_many); in _copy_characters()
1439 assert(from_start + how_many <= PyUnicode_GET_LENGTH(from)); in _copy_characters()
1443 assert(to_start + how_many <= PyUnicode_GET_LENGTH(to)); in _copy_characters()
1445 if (how_many == 0) in _copy_characters()
1460 for (i=0; i < how_many; i++) { in _copy_characters()
1475 (Py_UCS1*)from_data + how_many); in _copy_characters()
1481 to_kind * how_many); in _copy_characters()
1489 PyUnicode_1BYTE_DATA(from) + from_start + how_many, in _copy_characters()
1499 PyUnicode_1BYTE_DATA(from) + from_start + how_many, in _copy_characters()
[all …]
/external/icu/icu4c/source/test/iotest/
Dfiletst.c578 int32_t how_many; in TestFileReadBuffering() local
589 how_many = u_file_read(buffer, 1024, myFile); in TestFileReadBuffering()
590 if (how_many != 1024 || buffer[1023] != 0xBEEF) { in TestFileReadBuffering()
/external/python/cpython3/Include/
Dunicodeobject.h636 Py_ssize_t how_many
647 Py_ssize_t how_many
/external/python/cpython3/Modules/
D_testcapimodule.c1920 Py_ssize_t from_start, to_start, how_many, copied; in unicode_copycharacters() local
1923 &from, &from_start, &how_many)) { in unicode_copycharacters()
1937 from_start, how_many)) < 0) { in unicode_copycharacters()
/external/python/cpython3/Doc/data/
Drefcounts.dat2751 PyUnicode_CopyCharacters:Py_ssize_t:how_many::
/external/python/cpython3/Doc/c-api/
Dunicode.rst582 Py_ssize_t how_many)