/external/grpc-grpc/ |
D | Makefile | 10435 # You can't build secure targets if you don't have OpenSSL. 10467 # You can't build secure targets if you don't have OpenSSL. 10499 # You can't build secure targets if you don't have OpenSSL. 10531 # You can't build secure targets if you don't have OpenSSL. 10563 # You can't build secure targets if you don't have OpenSSL. 10595 # You can't build secure targets if you don't have OpenSSL. 10627 # You can't build secure targets if you don't have OpenSSL. 10659 # You can't build secure targets if you don't have OpenSSL. 10691 # You can't build secure targets if you don't have OpenSSL. 10723 # You can't build secure targets if you don't have OpenSSL. [all …]
|
/external/tensorflow/tensorflow/contrib/tensor_forest/client/ |
D | eval_metrics.py | 38 def _top_k(probabilities, targets): argument 39 targets = math_ops.cast(targets, dtypes.int32) 40 if targets.get_shape().ndims > 1: 41 targets = array_ops.squeeze(targets, axis=[1]) 42 return metrics.mean(nn.in_top_k(probabilities, targets, k)) 46 def _accuracy(predictions, targets, weights=None): argument 48 labels=targets, predictions=predictions, weights=weights) 51 def _r2(probabilities, targets, weights=None): argument 52 targets = math_ops.cast(targets, dtypes.float32) 53 y_mean = math_ops.reduce_mean(targets, 0) [all …]
|
D | eval_metrics_test.py | 33 targets = constant_op.constant([[0], [2], [1], [1]]) 34 in_top_2_op, update_op = top_2_fn(probabilities, targets) 50 targets = constant_op.constant([3, 0, 2, 5, 1]) 51 in_top_3_op, update_op = top_3_fn(probabilities, targets) 62 targets = constant_op.constant([0, 1, 4, 6, 5, 1, 7, 5, 4, 8]) 63 accuracy_op, update_op = eval_metrics._accuracy(predictions, targets) 74 targets = constant_op.constant( 76 r2_op, update_op = eval_metrics._r2(scores, targets)
|
/external/tensorflow/tensorflow/python/ops/ |
D | nn_xent_test.py | 40 def _SigmoidCrossEntropyWithLogits(self, logits, targets): argument 41 assert len(logits) == len(targets) 45 return [-z * log(y) - (1 - z) * log(1 - y) for y, z in zip(pred, targets)] 53 targets = constant_op.constant(y, shape=sizes, dtype=dtype, name="targets") 55 return logits, targets, losses 60 logits, targets, _ = self._Inputs() 62 labels=targets, logits=logits, name="mylogistic") 69 logits, targets, losses = self._Inputs(dtype=dtype) 71 labels=targets, logits=logits) 80 logits, targets, losses = self._Inputs(dtype=dtype, sizes=[2, 2, 2]) [all …]
|
/external/tensorflow/tensorflow/python/keras/engine/ |
D | training_eager.py | 37 def _eager_loss_fn(outputs, targets, loss_fn, output_name): argument 39 loss = loss_fn(targets, outputs) 43 def _eager_metrics_fn(model, outputs, targets, sample_weights=None, masks=None): argument 57 targets = nest.flatten(targets) 60 outputs, targets=targets, sample_weights=sample_weights, masks=masks) 66 targets, argument 110 targets = nest.flatten(targets) 139 weighted_losses = loss_fn(targets[i], outs[i], sample_weight=weights) 150 output_loss = loss_fn(targets[i], outs[i], sample_weight=weights) 163 output_loss_metrics[i], targets[i], outs[i], weights=weights) [all …]
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | Select.java | 54 …protected InstructionHandle[] targets; // target objects in instruction list TODO could be package… field in Select 91 …Select(final short opcode, final int[] match, final InstructionHandle[] targets, final Instruction… in Select() argument 95 this.targets = targets; in Select() 98 for (final InstructionHandle target2 : targets) { in Select() 101 if ((match_length = match.length) != targets.length) { in Select() 103 match.length + " Target length: " + targets.length); in Select() 172 if (targets[i] != null) { in toString() 173 s = targets[i].getInstruction().toString(); in toString() 189 notifyTarget(targets[i], target, this); in setTarget() 190 targets[i] = target; in setTarget() [all …]
|
D | SWITCH.java | 30 private InstructionHandle[] targets; field in SWITCH 50 …public SWITCH(final int[] match, final InstructionHandle[] targets, final InstructionHandle target… in SWITCH() argument 52 this.targets = targets.clone(); in SWITCH() 54 instruction = new TABLESWITCH(match, targets, target); in SWITCH() 59 instruction = new TABLESWITCH(this.match, this.targets, target); in SWITCH() 61 instruction = new LOOKUPSWITCH(this.match, this.targets, target); in SWITCH() 67 …public SWITCH(final int[] match, final InstructionHandle[] targets, final InstructionHandle target… in SWITCH() argument 68 this(match, targets, target, 1); in SWITCH() 78 t_vec[0] = targets[0]; in fillup() 88 t_vec[count] = targets[i]; in fillup() [all …]
|
/external/mesa3d/src/gallium/ |
D | Makefile.am | 142 SUBDIRS += targets/pipe-loader 146 SUBDIRS += state_trackers/clover targets/opencl 150 SUBDIRS += state_trackers/dri targets/dri 154 SUBDIRS += state_trackers/glx/xlib targets/libgl-xlib 158 SUBDIRS += state_trackers/omx_bellagio targets/omx-bellagio 162 SUBDIRS += state_trackers/osmesa targets/osmesa 166 SUBDIRS += state_trackers/va targets/va 170 SUBDIRS += state_trackers/vdpau targets/vdpau 174 SUBDIRS += state_trackers/xa targets/xa 178 SUBDIRS += state_trackers/xvmc targets/xvmc [all …]
|
D | SConscript | 56 # State trackers and targets 60 'targets/graw-null/SConscript', 66 'targets/osmesa/SConscript', 72 'targets/graw-xlib/SConscript', 73 'targets/libgl-xlib/SConscript', 79 'targets/graw-gdi/SConscript', 80 'targets/libgl-gdi/SConscript', 86 'targets/haiku-softpipe/SConscript', 92 'targets/dri/SConscript',
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_cb_xformfb.c | 54 struct pipe_stream_output_target *targets[PIPE_MAX_SO_BUFFERS]; member 96 pipe_so_target_reference(&sobj->targets[i], NULL); in st_delete_transform_feedback() 120 ARRAY_SIZE(sobj->targets)); in st_begin_transform_feedback() 131 if (!sobj->targets[i] || in st_begin_transform_feedback() 132 sobj->targets[i] == sobj->draw_count[stream] || in st_begin_transform_feedback() 133 sobj->targets[i]->buffer != bo->buffer || in st_begin_transform_feedback() 134 sobj->targets[i]->buffer_offset != sobj->base.Offset[i] || in st_begin_transform_feedback() 135 sobj->targets[i]->buffer_size != sobj->base.Size[i]) { in st_begin_transform_feedback() 142 pipe_so_target_reference(&sobj->targets[i], NULL); in st_begin_transform_feedback() 143 sobj->targets[i] = so_target; in st_begin_transform_feedback() [all …]
|
/external/v8/tools/dev/ |
D | gm.py | 206 def __init__(self, arch, mode, targets, tests=[]): argument 209 self.targets = set(targets) 212 def Extend(self, targets, tests=[]): argument 213 self.targets.update(targets) 243 targets = " ".join(self.targets) 247 return _Call("autoninja -C %s %s" % (path, targets)) 250 (path, targets)) 285 def PopulateConfigs(self, arches, modes, targets, tests): argument 290 self.configs[path] = Config(a, m, targets, tests) 292 self.configs[path].Extend(targets, tests) [all …]
|
/external/grpc-grpc/tools/run_tests/ |
D | task_runner.py | 30 _TARGETS += artifact_targets.targets() 31 _TARGETS += distribtest_targets.targets() 32 _TARGETS += package_targets.targets() 79 targets = [] variable 81 targets += _BUILD_MAP[label] 84 targets = [t for t in targets if all(f in t.labels for f in args.filter)] variable 85 targets = sorted(set(targets)) variable 89 for target in targets: 99 for target in targets:
|
/external/tensorflow/tensorflow/contrib/seq2seq/python/kernel_tests/ |
D | loss_test.py | 44 targets = [ 48 self.targets = array_ops.stack(targets, axis=1) 62 self.logits, self.targets, self.weights, 69 self.logits, self.targets, self.weights, 77 self.logits, self.targets, self.weights, 85 self.logits, self.targets, self.weights, 101 self.targets, self.logits, self.weights) 110 self.targets, self.logits, self.weights) 120 self.targets, self.logits, self.weights) 130 self.targets, self.logits, self.weights) [all …]
|
/external/llvm/lib/Support/ |
D | TargetRegistry.cpp | 21 iterator_range<TargetRegistry::iterator> TargetRegistry::targets() { in targets() function in TargetRegistry 34 std::find_if(targets().begin(), targets().end(), in lookupTarget() 37 if (I == targets().end()) { in lookupTarget() 67 if (targets().begin() == targets().end()) { in lookupTarget() 73 auto I = std::find_if(targets().begin(), targets().end(), ArchMatch); in lookupTarget() 75 if (I == targets().end()) { in lookupTarget() 80 auto J = std::find_if(std::next(I), targets().end(), ArchMatch); in lookupTarget() 81 if (J != targets().end()) { in lookupTarget() 121 for (const auto &T : TargetRegistry::targets()) { in printRegisteredTargetsForVersion()
|
/external/deqp/modules/gles31/functional/ |
D | es31fShaderMultisampleInterpolationTests.cpp | 1669 } targets[] = in init() local 1711 for (int targetNdx = 0; targetNdx < DE_LENGTH_OF_ARRAY(targets); ++targetNdx) in init() 1712 …eQualifierRenderCase(m_context, targets[targetNdx].name, targets[targetNdx].desc, targets[targetNd… in init() 1725 for (int targetNdx = 0; targetNdx < DE_LENGTH_OF_ARRAY(targets); ++targetNdx) in init() 1726 …teAtSampleRenderCase(m_context, targets[targetNdx].name, targets[targetNdx].desc, targets[targetNd… in init() 1734 for (int targetNdx = 0; targetNdx < DE_LENGTH_OF_ARRAY(targets); ++targetNdx) in init() 1735 …teAtSampleRenderCase(m_context, targets[targetNdx].name, targets[targetNdx].desc, targets[targetNd… in init() 1743 for (int targetNdx = 0; targetNdx < DE_LENGTH_OF_ARRAY(targets); ++targetNdx) in init() 1744 if (targets[targetNdx].numSamples == 0) in init() 1745 …:string("sample_0_").append(targets[targetNdx].name).c_str(), targets[targetNdx].desc, targets[tar… in init() [all …]
|
D | es31fSampleVariableTests.cpp | 2218 } targets[] = in init() local 2237 for (int targetNdx = 0; targetNdx < DE_LENGTH_OF_ARRAY(targets); ++targetNdx) in init() 2238 …d(new NumSamplesCase(m_context, targets[targetNdx].name, targets[targetNdx].desc, targets[targetNd… in init() 2243 for (int targetNdx = 0; targetNdx < DE_LENGTH_OF_ARRAY(targets); ++targetNdx) in init() 2244 …d(new MaxSamplesCase(m_context, targets[targetNdx].name, targets[targetNdx].desc, targets[targetNd… in init() 2249 for (int targetNdx = 0; targetNdx < DE_LENGTH_OF_ARRAY(targets); ++targetNdx) in init() 2250 …ild(new SampleIDCase(m_context, targets[targetNdx].name, targets[targetNdx].desc, targets[targetNd… in init() 2259 for (int targetNdx = 0; targetNdx < DE_LENGTH_OF_ARRAY(targets); ++targetNdx) in init() 2260 …lePosCorrectnessCase(m_context, targets[targetNdx].name, targets[targetNdx].desc, targets[targetNd… in init() 2267 for (int targetNdx = 0; targetNdx < DE_LENGTH_OF_ARRAY(targets); ++targetNdx) in init() [all …]
|
/external/llvm/test/ExecutionEngine/MCJIT/ |
D | lit.local.cfg | 2 targets = root.targets 3 if ('X86' in targets) | ('AArch64' in targets) | ('ARM' in targets) | \ 4 ('Mips' in targets) | ('PowerPC' in targets) | ('SystemZ' in targets):
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/ExecutionEngine/MCJIT/ |
D | lit.local.cfg | 2 targets = root.targets 3 if ('X86' in targets) | ('AArch64' in targets) | ('ARM' in targets) | \ 4 ('Mips' in targets) | ('PowerPC' in targets) | ('SystemZ' in targets):
|
/external/llvm/test/ExecutionEngine/OrcMCJIT/ |
D | lit.local.cfg | 2 targets = root.targets 3 if ('X86' in targets) | ('AArch64' in targets) | ('ARM' in targets) | \ 4 ('Mips' in targets) | ('PowerPC' in targets) | ('SystemZ' in targets):
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/ExecutionEngine/OrcMCJIT/ |
D | lit.local.cfg | 2 targets = root.targets 3 if ('X86' in targets) | ('AArch64' in targets) | ('ARM' in targets) | \ 4 ('Mips' in targets) | ('PowerPC' in targets) | ('SystemZ' in targets):
|
/external/tensorflow/tensorflow/go/ |
D | session.go | 133 func (s *Session) Run(feeds map[Output]*Tensor, fetches []Output, targets []*Operation) ([]*Tensor,… 143 c := newCRunArgs(feeds, fetches, targets) 148 ptrOperation(c.targets), C.int(len(targets)), 182 func (pr *PartialRun) Run(feeds map[Output]*Tensor, fetches []Output, targets []*Operation) ([]*Ten… 184 c = newCRunArgs(feeds, fetches, targets) 200 ptrOperation(c.targets), C.int(len(targets)), 214 func (s *Session) NewPartialRun(feeds, fetches []Output, targets []*Operation) (*PartialRun, error)… 218 ctargets = make([]*C.TF_Operation, len(targets)) 238 if len(targets) > 0 { 240 for i, o := range targets { [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/memory/ |
D | vktMemoryBindingTests.cpp | 415 targets, 420 void createBindingTargets<VkBuffer> (BuffersList& targets, in createBindingTargets() argument 428 targets.reserve(count); in createBindingTargets() 432 targets.push_back(BufferPtr(new Move<VkBuffer>(createBuffer(vk, vkDevice, &bufferParams)))); in createBindingTargets() 437 void createBindingTargets<VkImage> (ImagesList& targets, in createBindingTargets() argument 445 targets.reserve(count); in createBindingTargets() 449 targets.push_back(ImagePtr(new Move<VkImage>(createImage(vk, vkDevice, &imageParams)))); in createBindingTargets() 455 targets, 461 void createMemory<VkBuffer, DE_FALSE> (BuffersList& targets, in createMemory() argument 467 const deUint32 count = static_cast<deUint32>(targets.size()); in createMemory() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | TargetRegistry.cpp | 21 iterator_range<TargetRegistry::iterator> TargetRegistry::targets() { in targets() function in TargetRegistry 33 auto I = find_if(targets(), in lookupTarget() 36 if (I == targets().end()) { in lookupTarget() 66 if (targets().begin() == targets().end()) { in lookupTarget() 72 auto I = find_if(targets(), ArchMatch); in lookupTarget() 74 if (I == targets().end()) { in lookupTarget() 79 auto J = std::find_if(std::next(I), targets().end(), ArchMatch); in lookupTarget() 80 if (J != targets().end()) { in lookupTarget() 121 for (const auto &T : TargetRegistry::targets()) { in printRegisteredTargetsForVersion()
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/ |
D | FramesTest.java | 25 import org.jacoco.core.test.validation.targets.Target01; 26 import org.jacoco.core.test.validation.targets.Target02; 27 import org.jacoco.core.test.validation.targets.Target03; 28 import org.jacoco.core.test.validation.targets.Target04; 29 import org.jacoco.core.test.validation.targets.Target05; 30 import org.jacoco.core.test.validation.targets.Target06; 31 import org.jacoco.core.test.validation.targets.Target07; 32 import org.jacoco.core.test.validation.targets.Target08; 33 import org.jacoco.core.test.validation.targets.Target09; 34 import org.jacoco.core.test.validation.targets.Target10; [all …]
|
/external/tensorflow/tensorflow/python/autograph/pyct/static_analysis/ |
D | reaching_definitions_test.py | 91 self.assertHasDefs(fn_body[0].targets[0], 1) 93 self.assertHasDefs(fn_body[1].body[0].targets[0], 1) 111 self.assertHasDefs(fn_body[1].body[0].targets[0], 1) 112 self.assertHasDefs(fn_body[1].body[1].targets[0], 1) 133 self.assertHasDefs(fn_body[0].targets[0], 1) 137 self.assertHasDefs(fn_body[1].orelse[0].targets[0], 1) 158 self.assertHasDefs(fn_body[0].targets[0], 1) 162 self.assertHasDefs(fn_body[1].orelse[0].targets[0], 1) 182 def_of_a_in_if = fn_body[1].body[0].targets[0] 184 self.assertHasDefs(fn_body[0].targets[0], 1) [all …]
|