/external/ltp/testcases/kernel/syscalls/clock_nanosleep/ |
clock_nanosleep02.c | 28 int sample_fn(int clk_id, long long usec) function 48 .sample = sample_fn,
|
/external/ltp/testcases/kernel/syscalls/nanosleep/ |
nanosleep01.c | 31 int sample_fn(int clk_id, long long usec) function 51 .sample = sample_fn,
|
/external/ltp/testcases/kernel/syscalls/futex/ |
futex_wait05.c | 29 int sample_fn(int clk_id, long long usec) function 56 .sample = sample_fn,
|
/external/ltp/testcases/kernel/syscalls/poll/ |
poll02.c | 31 int sample_fn(int clk_id, long long usec) function 68 .sample = sample_fn,
|
/external/ltp/testcases/kernel/syscalls/pselect/ |
pselect01.c | 24 int sample_fn(int clk_id, long long usec) function 48 .sample = sample_fn,
|
/external/ltp/testcases/kernel/syscalls/epoll_wait/ |
epoll_wait02.c | 35 int sample_fn(int clk_id, long long usec) function 81 .sample = sample_fn,
|
/external/ltp/testcases/kernel/syscalls/select/ |
select04.c | 31 static int sample_fn(int clk_id, long long usec) function 69 .sample = sample_fn,
|
/external/tensorflow/tensorflow/contrib/seq2seq/python/ops/ |
sampler.py | 131 sample_fn, 140 sample_fn: callable that takes `(time, outputs, state)` and emits tensor 150 self._sample_fn = sample_fn 567 del time, state # unused by sample_fn 619 del time, state # unused by sample_fn 636 sample_fn, 644 sample_fn: A callable that takes `outputs` and emits tensor `sample_ids`. 646 the shape of the each sample in the batch returned by `sample_fn`. 647 sample_dtype: the dtype of the sample returned by `sample_fn`. 654 self.sample_fn = sample_f [all...] |
helper.py | 171 def __init__(self, initialize_fn, sample_fn, next_inputs_fn, 178 sample_fn: callable that takes `(time, outputs, state)` 188 self._sample_fn = sample_fn 610 del time, state # unused by sample_fn 666 del time, state # unused by sample_fn 684 def __init__(self, sample_fn, sample_shape, sample_dtype, 689 sample_fn: A callable that takes `outputs` and emits tensor `sample_ids`. 691 the shape of the each sample in the batch returned by `sample_fn`. 692 sample_dtype: the dtype of the sample returned by `sample_fn`. 700 self._sample_fn = sample_fn [all...] |
/external/tensorflow/tensorflow/contrib/seq2seq/python/kernel_tests/ |
basic_decoder_test.py | 517 sample_fn = lambda x: helper_py.categorical_sample(logits=x) 529 sample_fn, sample_shape=(), sample_dtype=dtypes.int32, 598 sample_fn = ( 610 sample_fn, sample_shape=[cell_depth], sample_dtype=dtypes.bool,
|
basic_decoder_v2_test.py | 526 sample_fn = lambda x: sampler_py.categorical_sample(logits=x) 535 sample_fn, sample_shape=(), sample_dtype=dtypes.int32, end_fn=end_fn, 605 sample_fn = ( 614 sample_fn, sample_shape=[cell_depth], sample_dtype=dtypes.bool,
|