HomeSort by relevance Sort by last modified time
    Searched full:pred (Results 526 - 550 of 1751) sorted by null

<<21222324252627282930>>

  /external/libcxx/test/std/containers/unord/unord.set/
max_load_factor.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
rehash.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
reserve.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
  /external/libcxx/test/std/containers/unord/unord.set/unord.set.cnstr/
size.fail.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
  /external/libcxx/test/std/containers/unord/unord.set/unord.set.swap/
db_swap_1.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
  /external/llvm/lib/Target/ARM/
ThumbRegisterInfo.h 43 ARMCC::CondCodes Pred = ARMCC::AL, unsigned PredReg = 0,
  /external/llvm/test/Transforms/LoopVectorize/
if-pred-stores.ll 1 ; RUN: opt -S -vectorize-num-stores-pred=1 -force-vector-width=1 -force-vector-interleave=2 -loop-vectorize -simplifycfg < %s | FileCheck %s --check-prefix=UNROLL
2 ; RUN: opt -S -vectorize-num-stores-pred=1 -force-vector-width=1 -force-vector-interleave=2 -loop-vectorize < %s | FileCheck %s --check-prefix=UNROLL-NOSIMPLIFY
3 ; RUN: opt -S -vectorize-num-stores-pred=1 -force-vector-width=2 -force-vector-interleave=1 -loop-vectorize -enable-cond-stores-vec -simplifycfg < %s | FileCheck %s --check-prefix=VEC
4 ; RUN: opt -S -vectorize-num-stores-pred=1 -force-vector-width=2 -force-vector-interleave=1 -loop-vectorize -enable-cond-stores-vec -simplifycfg -instcombine < %s | FileCheck %s --check-prefix=VEC-IC
  /external/llvm/test/Transforms/SimplifyCFG/
wineh-unreachable.ll 59 ; and merged into the pred block.
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_strings.c 53 "PRED",
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_setup_tgsi_llvm.c 688 unsigned pred; local
693 case TGSI_OPCODE_USEQ: pred = LLVMIntEQ; break;
694 case TGSI_OPCODE_USNE: pred = LLVMIntNE; break;
695 case TGSI_OPCODE_USGE: pred = LLVMIntUGE; break;
696 case TGSI_OPCODE_USLT: pred = LLVMIntULT; break;
697 case TGSI_OPCODE_ISGE: pred = LLVMIntSGE; break;
698 case TGSI_OPCODE_ISLT: pred = LLVMIntSLT; break;
703 LLVMValueRef v = LLVMBuildICmp(builder, pred,
718 LLVMRealPredicate pred; local
727 case TGSI_OPCODE_SGE: pred = LLVMRealUGE; break
    [all...]
  /external/testng/src/main/java/org/testng/internal/
MethodHelper.java 212 for (ITestNGMethod pred : methodsNamed) {
213 predecessors.add(pred);
220 for (ITestNGMethod pred : methodsThatBelongToGroup) {
221 predecessors.add(pred);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/armv7a-neon/
vp8_rtcd.h 88 void vp8_short_idct4x4llm_c(short *input, unsigned char *pred, int pitch, unsigned char *dst, int dst_stride);
89 void vp8_short_idct4x4llm_v6_dual(short *input, unsigned char *pred, int pitch, unsigned char *dst, int dst_stride);
90 void vp8_short_idct4x4llm_neon(short *input, unsigned char *pred, int pitch, unsigned char *dst, int dst_stride);
101 void vp8_dc_only_idct_add_c(short input, unsigned char *pred, int pred_stride, unsigned char *dst, int dst_stride);
102 void vp8_dc_only_idct_add_v6(short input, unsigned char *pred, int pred_stride, unsigned char *dst, int dst_stride);
103 void vp8_dc_only_idct_add_neon(short input, unsigned char *pred, int pred_stride, unsigned char *dst, int dst_stride);
363 void vp8_subtract_mby_c(short *diff, unsigned char *src, int src_stride, unsigned char *pred, int pred_stride);
364 void vp8_subtract_mby_armv6(short *diff, unsigned char *src, int src_stride, unsigned char *pred, int pred_stride);
365 void vp8_subtract_mby_neon(short *diff, unsigned char *src, int src_stride, unsigned char *pred, int pred_stride);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.partitions/
is_partitioned.pass.cpp 14 // is_partitioned(InputIterator first, InputIterator last, Predicate pred);
partition_copy.pass.cpp 17 // Predicate pred);
stable_partition.pass.cpp 12 // template<BidirectionalIterator Iter, Predicate<auto, Iter::value_type> Pred>
14 // && CopyConstructible<Pred>
16 // stable_partition(Iter first, Iter last, Pred pred);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
unique_pred.pass.cpp 12 // template<ForwardIterator Iter, EquivalenceRelation<auto, Iter::value_type> Pred>
14 // && CopyConstructible<Pred>
16 // unique(Iter first, Iter last, Pred pred);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.any_of/
any_of.pass.cpp 14 // any_of(InputIterator first, InputIterator last, Predicate pred);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.none_of/
none_of.pass.cpp 14 // none_of(InputIterator first, InputIterator last, Predicate pred);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/
count.pass.cpp 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
find_const.pass.cpp 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
find_non_const.pass.cpp 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.swap/
db_swap_1.pass.cpp 12 // template <class Key, class Value, class Hash = hash<Key>, class Pred = equal_to<Key>,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unorder.map.modifiers/
clear.pass.cpp 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
insert_init.pass.cpp 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/
count.pass.cpp 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,

Completed in 625 milliseconds

<<21222324252627282930>>