HomeSort by relevance Sort by last modified time
    Searched refs:Prefix (Results 176 - 200 of 760) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
Intercept.cpp 140 std::string Prefix = std::string(Name.begin(), Name.end()-9);
141 if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128", false))
143 if (void *Ptr = getPointerToNamedFunction(Prefix, false))
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/
Intercept.cpp 143 std::string Prefix = std::string(Name.begin(), Name.end()-9);
144 if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128", false))
146 if (void *Ptr = getPointerToNamedFunction(Prefix, false))
  /external/llvm/tools/bugpoint/
ListReducer.h 33 KeepPrefix, // The prefix alone satisfies the predicate
42 // the prefix anyway, it can.
44 virtual TestResult doTest(std::vector<ElTy> &Prefix,
121 std::vector<ElTy> Prefix(TheList.begin(), TheList.begin()+Mid);
124 switch (doTest(Prefix, Suffix, Error)) {
126 // The property still holds. We can just drop the prefix elements, and
135 // The predicate still holds, shorten the list to the prefix elements.
136 TheList.swap(Prefix);
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
ListReducer.h 33 KeepPrefix, // The prefix alone satisfies the predicate
42 // the prefix anyway, it can.
44 virtual TestResult doTest(std::vector<ElTy> &Prefix,
116 std::vector<ElTy> Prefix(TheList.begin(), TheList.begin()+Mid);
119 switch (doTest(Prefix, Suffix, Error)) {
121 // The property still holds. We can just drop the prefix elements, and
130 // The predicate still holds, shorten the list to the prefix elements.
131 TheList.swap(Prefix);
CrashDebugger.cpp 62 ReducePassList::doTest(std::vector<std::string> &Prefix,
67 if (!Prefix.empty()) {
69 << getPassesString(Prefix) << ": ";
71 if (BD.runPasses(BD.getProgram(), Prefix, PfxOutput))
115 virtual TestResult doTest(std::vector<GlobalVariable*> &Prefix,
120 if (!Prefix.empty() && TestGlobalVariables(Prefix))
185 virtual TestResult doTest(std::vector<Function*> &Prefix,
190 if (!Prefix.empty() && TestFuncs(Prefix))
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
writer.h 108 bool Null() { Prefix(kNullType); return WriteNull(); }
109 bool Bool(bool b) { Prefix(b ? kTrueType : kFalseType); return WriteBool(b); }
110 bool Int(int i) { Prefix(kNumberType); return WriteInt(i); }
111 bool Uint(unsigned u) { Prefix(kNumberType); return WriteUint(u); }
112 bool Int64(int64_t i64) { Prefix(kNumberType); return WriteInt64(i64); }
113 bool Uint64(uint64_t u64) { Prefix(kNumberType); return WriteUint64(u64); }
120 bool Double(double d) { Prefix(kNumberType); return WriteDouble(d); }
124 Prefix(kStringType);
135 Prefix(kObjectType);
154 Prefix(kArrayType);
    [all...]
  /external/llvm/tools/llvm-split/
llvm-split.cpp 36 static cl::opt<unsigned> NumOutputs("j", cl::Prefix, cl::init(2),
40 PreserveLocals("preserve-locals", cl::Prefix, cl::init(false),
  /external/swiftshader/third_party/subzero/src/
IceTranslator.h 59 /// Creates a name using the given prefix and corresponding index.
60 std::string createUnnamedName(const std::string &Prefix, SizeT Index);
62 /// Reports if there is a (potential) conflict between Name, and using Prefix
66 const std::string &Prefix);
  /hardware/qcom/data/ipacfg-mgr/msm8998/hal/src/
PrefixParser.cpp 44 using Prefix = ::IOffloadManager::Prefix;
108 Prefix PrefixParser::getFirstPrefix() {
154 Prefix pre = makeBlankPrefix(famHint);
253 bool PrefixParser::parseV4Addr(string in, Prefix &out) {
271 bool PrefixParser::parseV6Addr(string in, Prefix &out) {
309 bool PrefixParser::populateV4Mask(int mask, Prefix &out) {
316 bool PrefixParser::populateV6Mask(int mask, Prefix &out) {
346 Prefix PrefixParser::makeBlankPrefix(IP_FAM famHint) {
347 Prefix ret
    [all...]
  /prebuilts/go/darwin-x86/doc/codewalk/
markov.go 13 potential textual suffixes for a given prefix. Consider this text:
18 and suffixes, or "chain": (This table assumes a prefix length of two words.)
20 Prefix Suffix
33 To generate text using this table we select an initial prefix ("I am", for
34 example), choose one of the suffixes associated with that prefix at random
36 and then create a new prefix by removing the first word from the prefix
37 and appending the suffix (making the new prefix is "am a"). Repeat this process
38 until we can't find any suffixes for the current prefix or we exceed the word
43 The prefix and output lengths can be specified using the -prefix and -word
    [all...]
  /prebuilts/go/linux-x86/doc/codewalk/
markov.go 13 potential textual suffixes for a given prefix. Consider this text:
18 and suffixes, or "chain": (This table assumes a prefix length of two words.)
20 Prefix Suffix
33 To generate text using this table we select an initial prefix ("I am", for
34 example), choose one of the suffixes associated with that prefix at random
36 and then create a new prefix by removing the first word from the prefix
37 and appending the suffix (making the new prefix is "am a"). Repeat this process
38 until we can't find any suffixes for the current prefix or we exceed the word
43 The prefix and output lengths can be specified using the -prefix and -word
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
gnu.go 61 // Libopcodes always prefers MOVNTSS regardless of prefix order.
64 for i := len(inst.Prefix) - 1; i >= 0; i-- {
65 switch inst.Prefix[i] & 0xFF {
69 inst.Prefix[i] |= PrefixImplicit
72 inst.Prefix[i] &^= PrefixImplicit
106 // CRC32 has a mandatory F2 prefix.
142 // any operand size prefix has been marked as used (to decide which
172 for i, p := range inst.Prefix {
175 inst.Prefix[i] &= 0xF0FF // cut interpretation bits, producing original segment prefix
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
gnu.go 61 // Libopcodes always prefers MOVNTSS regardless of prefix order.
64 for i := len(inst.Prefix) - 1; i >= 0; i-- {
65 switch inst.Prefix[i] & 0xFF {
69 inst.Prefix[i] |= PrefixImplicit
72 inst.Prefix[i] &^= PrefixImplicit
106 // CRC32 has a mandatory F2 prefix.
142 // any operand size prefix has been marked as used (to decide which
172 for i, p := range inst.Prefix {
175 inst.Prefix[i] &= 0xF0FF // cut interpretation bits, producing original segment prefix
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Opal/OpalPasswordDxe/
OpalHiiCallbacks.c 25 @param Prefix The prefix string.
33 const CHAR16 *Prefix
47 PrefixLen = StrLen(Prefix);
61 CopyMem(VarName, Prefix, PrefixLen * sizeof(CHAR16));
  /external/google-breakpad/src/testing/gtest/include/gtest/
gtest-typed-test.h 73 // prefix.
77 // TestFixture::" prefix.
137 // argument to the INSTANTIATE_* macro is a prefix that will be added
250 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
251 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
255 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
  /external/llvm/include/llvm/Option/
Option.h 89 /// \brief Get the name of this option without any prefix.
117 /// \brief Get the default prefix for this option.
119 const char *Prefix = *Info->Prefixes;
120 return Prefix ? Prefix : StringRef();
123 /// \brief Get the name of this option with the default prefix.
195 /// \param ArgSize The number of bytes taken up by the matched Option prefix
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-typed-test.h 73 // prefix.
77 // TestFixture::" prefix.
137 // argument to the INSTANTIATE_* macro is a prefix that will be added
253 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
254 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
258 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
  /external/lzma/CPP/Common/
Wildcard.h 92 UString Prefix;
95 CPair(const UString &prefix): Prefix(prefix) { };
100 k_RelatPath, // absolute prefix as Prefix, remain path in Tree
101 k_FullPath, // drive prefix as Prefix, remain path in Tree
121 int FindPrefix(const UString &prefix) const;
128 { return (Pairs.Size() == 1 && Pairs.Front().Prefix.IsEmpty()); }
    [all...]
  /external/mesa3d/src/gtest/include/gtest/
gtest-typed-test.h 73 // prefix.
77 // TestFixture::" prefix.
137 // argument to the INSTANTIATE_* macro is a prefix that will be added
250 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
251 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
255 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/
gtest-typed-test.h 73 // prefix.
77 // TestFixture::" prefix.
137 // argument to the INSTANTIATE_* macro is a prefix that will be added
250 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
251 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
255 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/
gtest-typed-test.h 73 // prefix.
77 // TestFixture::" prefix.
137 // argument to the INSTANTIATE_* macro is a prefix that will be added
250 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \
251 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \
255 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Option/
Option.h 89 /// \brief Get the name of this option without any prefix.
117 /// \brief Get the default prefix for this option.
119 const char *Prefix = *Info->Prefixes;
120 return Prefix ? Prefix : StringRef();
123 /// \brief Get the name of this option with the default prefix.
195 /// \param ArgSize The number of bytes taken up by the matched Option prefix
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Option/
Option.h 97 /// \brief Get the name of this option without any prefix.
125 /// \brief Get the default prefix for this option.
127 const char *Prefix = *Info->Prefixes;
128 return Prefix ? Prefix : StringRef();
131 /// \brief Get the name of this option with the default prefix.
203 /// \param ArgSize The number of bytes taken up by the matched Option prefix
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Option/
Option.h 97 /// \brief Get the name of this option without any prefix.
125 /// \brief Get the default prefix for this option.
127 const char *Prefix = *Info->Prefixes;
128 return Prefix ? Prefix : StringRef();
131 /// \brief Get the name of this option with the default prefix.
203 /// \param ArgSize The number of bytes taken up by the matched Option prefix
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Option/
Option.h 98 /// \brief Get the name of this option without any prefix.
126 /// \brief Get the default prefix for this option.
128 const char *Prefix = *Info->Prefixes;
129 return Prefix ? Prefix : StringRef();
132 /// \brief Get the name of this option with the default prefix.
205 /// \param ArgSize The number of bytes taken up by the matched Option prefix

Completed in 1422 milliseconds

1 2 3 4 5 6 78 91011>>