Searched refs:condlist (Results 1 – 3 of 3) sorted by relevance
/external/ltp/testcases/realtime/perf/latency/ |
D | pthread_cond_many.c | 53 pthread_cond_t *condlist = NULL; variable 83 cp = &condlist[myid]; in childfunc() 138 if (pthread_cond_init(&condlist[itsid], NULL) != 0) { in create_thread_() 163 if (pthread_cond_broadcast(&condlist[itsid]) != 0) { in wake_child() 169 if (pthread_cond_signal(&condlist[itsid]) != 0) { in wake_child() 308 condlist = malloc(sizeof(*condlist) * nthreads); in main() 309 if ((child_waiting == NULL) || (condlist == NULL)) { in main()
|
/external/tensorflow/tensorflow/python/ops/numpy_ops/ |
D | np_array_ops.py | 945 def select(condlist, choicelist, default=0): # pylint: disable=missing-docstring argument 946 if len(condlist) != len(choicelist): 948 raise ValueError(msg.format(len(condlist), len(choicelist))) 949 if not condlist: 956 for cond, choice in zip(condlist[::-1], choicelist[::-1]):
|
/external/tensorflow/third_party/py/numpy/tf_numpy_api/ |
D | tensorflow.experimental.numpy.pbtxt | 761 …argspec: "args=[\'condlist\', \'choicelist\', \'default\'], varargs=None, keywords=None, defaults=…
|