HomeSort by relevance Sort by last modified time
    Searched refs:conditional (Results 251 - 275 of 758) sorted by null

<<11121314151617181920>>

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml 73 (* Grab the first block so that we might later add the conditional branch
86 * other is used for the conditional branch. *)
104 (* Return to the start block to add the conditional branch. *)
171 (* Insert the conditional branch into the end of loop_end_bb. *)
  /external/llvm/test/MC/ARM/
virtexts-thumb.s 53 # The conditional forms can't be tested becuse the ARM assembler parser doesn't
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml 73 (* Grab the first block so that we might later add the conditional branch
86 * other is used for the conditional branch. *)
104 (* Return to the start block to add the conditional branch. *)
171 (* Insert the conditional branch into the end of loop_end_bb. *)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
loop_test.go 14 // Test that a simple loop condition does not generate a conditional
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
loop_test.go 14 // Test that a simple loop condition does not generate a conditional
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
terule.py 97 def conditional(self): member in class:BaseTERule
98 """The rule's conditional expression."""
106 """The conditional block of the rule (T/F)"""
137 self._rule_string += " [ {0.conditional} ]:{0.conditional_block}".format(self)
266 self._rule_string += " [ {0.conditional} ]:{0.conditional_block}".format(self)
274 cond = self.conditional
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
armv8-2-fp16-scalar-bad.s 78 @ armv8.2 fp16 scalar instruction cannot be conditional
thumb2_it.d 1 # name: Mixed 16 and 32-bit Thumb conditional instructions
thumb2_it_auto.d 1 # name: Mixed 16 and 32-bit Thumb conditional instructions
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixVector.h 75 typedef typename conditional<Vectorizable,_LhsPacket,LhsScalar>::type LhsPacket;
76 typedef typename conditional<Vectorizable,_RhsPacket,RhsScalar>::type RhsPacket;
77 typedef typename conditional<Vectorizable,_ResPacket,ResScalar>::type ResPacket;
351 typedef typename conditional<Vectorizable,_LhsPacket,LhsScalar>::type LhsPacket;
352 typedef typename conditional<Vectorizable,_RhsPacket,RhsScalar>::type RhsPacket;
353 typedef typename conditional<Vectorizable,_ResPacket,ResScalar>::type ResPacket;
GeneralBlockPanelKernel.h 390 typedef typename conditional<Vectorizable,_LhsPacket,LhsScalar>::type LhsPacket;
391 typedef typename conditional<Vectorizable,_RhsPacket,RhsScalar>::type RhsPacket;
392 typedef typename conditional<Vectorizable,_ResPacket,ResScalar>::type ResPacket;
496 typedef typename conditional<Vectorizable,_LhsPacket,LhsScalar>::type LhsPacket;
497 typedef typename conditional<Vectorizable,_RhsPacket,RhsScalar>::type RhsPacket;
498 typedef typename conditional<Vectorizable,_ResPacket,ResScalar>::type ResPacket;
539 madd_impl(a, b, c, tmp, typename conditional<Vectorizable,true_type,false_type>::type());
629 typedef typename conditional<Vectorizable,RealPacket, Scalar>::type LhsPacket;
630 typedef typename conditional<Vectorizable,DoublePacketType,Scalar>::type RhsPacket;
631 typedef typename conditional<Vectorizable,ScalarPacket,Scalar>::type ResPacket
1584 typedef typename conditional<SwappedTraits::LhsProgress>=8,typename unpacket_traits<SResPacket>::half,SResPacket>::type SResPacketHalf; typedef
1585 typedef typename conditional<SwappedTraits::LhsProgress>=8,typename unpacket_traits<SLhsPacket>::half,SLhsPacket>::type SLhsPacketHalf; typedef
1586 typedef typename conditional<SwappedTraits::LhsProgress>=8,typename unpacket_traits<SLhsPacket>::half,SRhsPacket>::type SRhsPacketHalf; typedef
1587 typedef typename conditional<SwappedTraits::LhsProgress>=8,typename unpacket_traits<SAccPacket>::half,SAccPacket>::type SAccPacketHalf; typedef
    [all...]
  /external/proguard/src/proguard/evaluation/
Processor.java 885 int conditional = indexValue.equal(valueFactory.createIntegerValue( local
913 int conditional = indexValue.equal(valueFactory.createIntegerValue( local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
flowgraph_generator1.go 21 // a conditional testing x & 1 != 0 (x is the input parameter
119 // block B,C, etc, explicit label w/ conditional increment
192 cond bool // block ends in conditional
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
flowgraph_generator1.go 21 // a conditional testing x & 1 != 0 (x is the input parameter
119 // block B,C, etc, explicit label w/ conditional increment
192 cond bool // block ends in conditional
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
ir_emitter_unnested.cc 307 Status IrEmitterUnnested::HandleConditional(HloInstruction* conditional) {
308 thunk_sequence_->emplace_back(BuildConditionalThunk(conditional));
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
metag-dis.c 78 /* Return the size of a conditional SET instruction. */
593 /* Format a conditional SET address mode string from INSN_WORD into BUF. */
850 /* Print a conditional SET instruction. */
2549 bfd_boolean conditional = FALSE; local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_verifier.cc 289 Status ShapeVerifier::HandleConditional(HloInstruction* conditional) {
291 conditional,
292 conditional->true_computation()->ComputeProgramShape().result()));
294 conditional,
295 conditional->false_computation()->ComputeProgramShape().result());
    [all...]
hlo_cost_analysis.cc 517 Status HloCostAnalysis::HandleConditional(const HloInstruction* conditional) {
521 ProcessSubcomputation(conditional->true_computation()));
523 ProcessSubcomputation(conditional->false_computation()));
  /build/soong/androidmk/cmd/androidmk/
android.go 604 // given a conditional, returns a function that will insert a variable assignment or not, based on the conditional
605 func includeVariableIf(bpVar bpVariable, conditional func(ctx variableAssignmentContext) bool) func(ctx variableAssignmentContext) error {
608 if conditional(ctx) {
631 func not(conditional func(ctx variableAssignmentContext) bool) func(ctx variableAssignmentContext) bool {
633 return !conditional(ctx)
  /external/eigen/Eigen/src/Core/
DenseBase.h 204 typedef typename internal::conditional<internal::is_same<typename internal::traits<Derived>::XprKind,MatrixXpr >::value,
436 inline const typename internal::conditional<Enable,ForceAlignedAccess<Derived>,Derived&>::type forceAlignedAccessIf() const;
438 inline typename internal::conditional<Enable,ForceAlignedAccess<Derived>,Derived&>::type forceAlignedAccessIf();
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
move_convert.pass.cpp 198 typedef typename std::conditional<IsArray, A[], A>::type VT;
288 typedef typename std::conditional<IsArray, A[], A>::type VT;
313 typedef typename std::conditional<IsArray, A[], A>::type VT;
  /external/llvm/include/llvm/Object/
ELFTypes.h 48 typedef typename std::conditional<Is64, uint64_t, uint32_t>::type uint;
365 typedef typename std::conditional<ELFT::Is64Bits,
367 typedef typename std::conditional<ELFT::Is64Bits,
  /external/tensorflow/tensorflow/core/kernels/
eigen_backward_spatial_convolutions.h 58 EIGEN_ALWAYS_INLINE static const typename internal::conditional<
174 typedef typename internal::conditional<isColMajor, ReverseColMajor,
321 EIGEN_ALWAYS_INLINE static const typename internal::conditional<
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Object/
ELFTypes.h 48 typedef typename std::conditional<Is64, uint64_t, uint32_t>::type uint;
364 typedef typename std::conditional<ELFT::Is64Bits,
366 typedef typename std::conditional<ELFT::Is64Bits,
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Object/
ELFTypes.h 53 using uint = typename std::conditional<Is64, uint64_t, uint32_t>::type;
375 using intX_t = typename std::conditional<ELFT::Is64Bits,
377 using uintX_t = typename std::conditional<ELFT::Is64Bits,

Completed in 884 milliseconds

<<11121314151617181920>>