/external/swiftshader/third_party/subzero/crosstest/ |
D | mem_intrin_main.cpp | 22 for (uint8_t init_val = 0; init_val < 100; ++init_val) { \ in testVariableLen() 24 int llc_result = test_func(buf, buf2, init_val, len); \ in testVariableLen() 25 int sz_result = Subzero_::test_func(buf, buf2, init_val, len); \ in testVariableLen() 31 STR(test_func), init_val, len, llc_result, sz_result); \ in testVariableLen() 44 for (uint8_t init_val = 0; init_val < 100; ++init_val) { \ in testFixedLen() 46 int llc_result = test_func##_##NBYTES(init_val); \ in testFixedLen() 47 int sz_result = Subzero_::test_func##_##NBYTES(init_val); \ in testFixedLen() 53 STR(test_func), init_val, NBYTES, llc_result, sz_result); \ in testFixedLen()
|
/external/tensorflow/tensorflow/python/training/ |
D | checkpoint_ops_test.py | 80 self.init_val = 42 85 constant_op.constant([[self.init_val]], dtype=dtypes.float32), shape) 113 np.reshape([18, 34, 50, self.init_val, self.init_val], [5, 1]), 114 np.reshape([16, 32, 48, self.init_val, self.init_val], [5, 1]), 115 np.reshape([self.init_val] * 5, [5, 1]), 116 np.reshape([17, 33, 49, self.init_val, self.init_val], [5, 1]), 117 np.reshape([self.init_val] * 5, [5, 1]) 145 np.reshape([2, 18, 34, 50, self.init_val, self.init_val], [6, 1]), 146 np.reshape([0, 16, 32, 48, self.init_val, self.init_val], [6, 1]), 147 np.reshape([self.init_val] * 6, [6, 1]), [all …]
|
/external/ltp/testcases/kernel/syscalls/io_setup/ |
D | io_setup01.c | 29 static void verify_failure(unsigned int nr, io_context_t *ctx, int init_val, long exp_err) in verify_failure() argument 32 memset(ctx, init_val, sizeof(*ctx)); in verify_failure() 51 static void verify_success(unsigned int nr, io_context_t *ctx, int init_val) in verify_success() argument 53 memset(ctx, init_val, sizeof(*ctx)); in verify_success()
|
/external/mesa3d/src/gallium/auxiliary/os/ |
D | os_thread.h | 78 pipe_semaphore_init(pipe_semaphore *sema, int init_val) in pipe_semaphore_init() argument 82 sema->counter = init_val; in pipe_semaphore_init()
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | checkpoint_ops_test.py | 182 init_val = 42 188 initializing_values=[init_val] * 4, 193 [33, init_val, init_val, init_val, 1, init_val], [3, 2])
|
D | array_ops_test.py | 1211 init_val = constant_op.constant([1, 2], dtype=dtypes.int32) 1214 v = variables.VariableV1(init_val) 1222 init_val = constant_op.constant([1, 2], dtype=dtypes.int32) 1225 v = resource_variable_ops.ResourceVariable(init_val)
|
D | tensor_array_ops_test.py | 1005 init_val = np.arange(100, 105, dtype=np_dtype) 1008 shape=init_val.shape, 1010 initializer=init_ops.constant_initializer(init_val))
|
/external/virglrenderer/src/gallium/auxiliary/os/ |
D | os_thread.h | 218 pipe_semaphore_init(pipe_semaphore *sema, int init_val) in pipe_semaphore_init() argument 222 sema->counter = init_val; in pipe_semaphore_init()
|
/external/igt-gpu-tools/tests/i915/ |
D | gem_exec_parse.c | 264 uint32_t init_val; /* initial identifiable value to set without LRI */ member 281 uint32_t expect = test->whitelisted ? test->test_val : test->init_val; in test_lri() 287 intel_register_write(test->reg, test->init_val); in test_lri() 291 test->init_val); in test_lri()
|
/external/linux-kselftest/tools/testing/selftests/x86/ |
D | protection_keys.c | 551 int sys_pkey_alloc(unsigned long flags, unsigned long init_val) in sys_pkey_alloc() argument 553 int ret = syscall(SYS_pkey_alloc, flags, init_val); in sys_pkey_alloc() 555 __func__, flags, init_val, ret, errno); in sys_pkey_alloc() 562 unsigned long init_val = 0x0; in alloc_pkey() local 566 ret = sys_pkey_alloc(0, init_val); in alloc_pkey() 582 shadow_pkru |= (init_val << (ret * 2)); in alloc_pkey()
|
/external/tensorflow/tensorflow/python/keras/engine/ |
D | base_layer_utils.py | 116 init_val = initializer 122 init_val = functools.partial(initializer, shape, dtype=dtype) 131 initial_value=init_val,
|
/external/tensorflow/tensorflow/python/ops/ |
D | variable_scope.py | 920 init_val = initializer 928 init_val = functools.partial(initializer, 933 init_val = functools.partial(initializer, 937 init_val = initializer 951 initial_value=init_val,
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | space_to_batch_converter.cc | 1402 auto init_val = is_select_and_scatter ? consumer->mutable_operand(2) in Propagate() local 1414 init_val, new_batch_dim, new_space_dim, in Propagate() 1437 new_space_size, init_val)); in Propagate() 1478 second_operand->shape(), init_val->shape(), in Propagate() 1483 second_operand, init_val, scatter_comp)); in Propagate() 1526 MakeBroadcastHlo(init_val, {}, top->shape().dimensions()); in Propagate() 1623 new_shape, init_val->shape(), new_win)); in Propagate() 1626 new_reduce_window_shape, first_operand, init_val, new_win, in Propagate()
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | quantize_training.cc | 419 Node* init_val, in MakeInitializedEMAVariable() argument 437 .Input(init_val) in MakeInitializedEMAVariable()
|
/external/tensorflow/tensorflow/python/distribute/ |
D | mirrored_variable_test.py | 124 init_val = array_ops.zeros([]) 125 v[0] = variables.Variable(init_val)
|
D | values_test.py | 76 def _make_mirrored_val(init_val=5.0): argument 81 v.append(constant_op.constant(init_val)) 1371 mirrored_val = _make_mirrored_val(init_val=3.)
|
/external/llvm-project/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
D | codegen.ml | 253 let init_val = 261 ignore(build_store init_val alloca builder);
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
D | codegen.ml | 253 let init_val = 261 ignore(build_store init_val alloca builder);
|
/external/tensorflow/tensorflow/python/tpu/ |
D | tensor_tracer.py | 575 init_val = int(_COMPACT_TRACE_ENTRY_INIT_VALUE) 577 init_val = _COMPACT_TRACE_ENTRY_INIT_VALUE 584 initializer=init_ops.constant_initializer(init_val),
|
/external/tensorflow/tensorflow/python/ops/numpy_ops/ |
D | np_math_ops.py | 830 def _make_nan_reduction(np_fun_name, reduction, init_val): argument 836 v = np_array_ops.array(init_val, dtype=a.dtype)
|
/external/llvm-project/llvm/docs/tutorial/ |
D | OCamlLangImpl7.rst | 764 let init_val = 772 ignore(build_store init_val alloca builder); 1472 let init_val = 1480 ignore(build_store init_val alloca builder);
|
/external/llvm/docs/tutorial/ |
D | OCamlLangImpl7.rst | 764 let init_val = 772 ignore(build_store init_val alloca builder); 1472 let init_val = 1480 ignore(build_store init_val alloca builder);
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_nir_soa.c | 1783 LLVMValueRef init_val = NULL; in emit_vote() local 1797 init_val = LLVMBuildLoad(builder, res_store, ""); in emit_vote() 1814 LLVMValueRef tmp = LLVMBuildICmp(builder, LLVMIntEQ, init_val, value_ptr, ""); in emit_vote()
|
/external/libpcap/ |
D | optimize.c | 708 init_val(opt_state_t *opt_state) in init_val() function 2082 init_val(opt_state); in opt_blks()
|
/external/protobuf/objectivec/Tests/ |
D | unittest_objc.proto | 242 optional string init_val = 11; field
|