HomeSort by relevance Sort by last modified time
    Searched defs:Functions (Results 1 - 18 of 18) sorted by null

  /external/llvm/lib/Transforms/Instrumentation/
FunctionBlackList.h 1 //===-- FunctionBlackList.cpp - blacklist of functions ----------*- C++ -*-===//
10 // or ThreadSanitizer) to avoid instrumenting some functions based on
22 // Blacklisted functions are not instrumented.
34 Regex *Functions;
  /external/bison/doc/
refcard.tex 470 \section {Functions}
  /external/llvm/include/llvm/CodeGen/
GCStrategy.h 65 list_type Functions;
134 iterator begin() { return Functions.begin(); }
135 iterator end() { return Functions.end(); }
  /external/dropbear/libtommath/
bn.tex 75 LibTomMath is a library of source code which provides a series of efficient and carefully written functions for manipulating
160 instructs the system to build all of the functions. This is how LibTomMath used to be packaged. This will give you
281 However, LibTomMath was written with cryptography in mind. It provides essentially all of the functions a cryptosystem
350 All LTM functions that use the mp\_int type will expect a pointer to mp\_int structure. You must allocate memory to
356 The arithmetic functions of the library are all organized to have the same style prototype. That is source operands
365 Another feature of the way the functions have been implemented is that source operands can be destination operands as well.
385 represents the default integer which is zero. If the functions returns MP\_OKAY then the mp\_int is ready to be used
386 by the other LibTomMath functions.
545 \section{Maintenance Functions}
642 small constant assignment functions. The first function is used to set a single digit constant while the second set
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
FunctionsTest.java 33 * Tests for {@link Functions}.
42 Function<String, String> identity = Functions.identity();
48 Function<Long, Long> identity = Functions.identity();
54 checkCanReserializeSingleton(Functions.identity());
58 assertEquals("3", Functions.toStringFunction().apply(3));
59 assertEquals("hiya", Functions.toStringFunction().apply("hiya"));
61 Functions.toStringFunction().apply(
68 Functions.toStringFunction().apply(null);
77 checkCanReserializeSingleton(Functions.toStringFunction());
83 tester.testAllPublicStaticMethods(Functions.class)
    [all...]
  /external/guava/guava/src/com/google/common/base/
Functions.java 33 * <p>All methods returns serializable functions as long as they're given serializable parameters.
40 public final class Functions {
41 private Functions() {}
182 * Returns the composition of two functions. For {@code f: A->B} and {@code g: B->C}, composition
237 /** @see Functions#forPredicate */
321 /** @see Functions#forSupplier*/
  /external/llvm/include/llvm/Analysis/
ProfileInfo.h 174 typename std::set<const FType*> Functions;
176 dbgs() << "Functions: \n";
179 Functions.insert(F);
184 Functions.insert(fi->first);
188 for (typename std::set<const FType*>::iterator FI = Functions.begin(), FE = Functions.end();
198 for (typename std::set<const FType*>::iterator FI = Functions.begin(), FE = Functions.end();
209 dbgs() << "Functions: \n";
  /external/llvm/include/llvm/Support/
GCOV.h 165 SmallVector<GCOVFunction *, 16> Functions;
  /external/llvm/lib/Analysis/IPA/
CallGraphSCCPass.cpp 14 // recursive functions, which they process all at once.
139 // Run pass P on all functions in the current SCC.
160 /// RefreshCallGraph - Scan the functions in the specified CFG and resync the
184 // Scan all functions in the SCC.
211 // constant folding happens of well known functions etc.
382 std::string Functions;
384 raw_string_ostream OS(Functions);
392 dumpPassInfo(P, EXECUTION_MSG, ON_CG_MSG, Functions);
437 // functions in this SCC. However, we support iterative compilation in the
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 173 /// ReduceCrashingFunctions reducer - This works by removing functions and
211 std::set<Function*> Functions;
217 Functions.insert(CMF);
220 outs() << "Checking for crash with only these functions: ";
224 // Loop over and delete any functions which we aren't supposed to be playing
227 if (!I->isDeclaration() && !Functions.count(I))
236 Funcs.assign(Functions.begin(), Functions.end());
248 /// the CFG really fast which can reduce large functions quickly.
492 // Now try to reduce the number of functions in the module to something small
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 142 FunctionListTy &Functions) {
147 Functions.push_back(f);
148 FunctionMap[Address] = &Functions.back();
367 FunctionListTy Functions;
375 // Insert the functions from the function starts segment into our map.
498 InstrAnalysis.get(), Start, DebugOut, FunctionMap, Functions);
512 FunctionMap, Functions);
517 // Create functions for the remaining callees we have gathered,
529 Functions.push_back(f);
530 mi->second = &Functions.back()
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex 124 (and helper API functions) are able to use the new designs automatically. There exists self-check functions for each
146 With this library all core functions (ciphers, hashes, prngs, and bignum) have the same prototype definition. They all load
149 know how to use Safer+, RC6, or Serpent as well. With all of the core functions there are central descriptor tables
167 are essentially structures with pointers to functions. While you can still call particular functions
226 In general the API is very simple to memorize and use. Most of the functions return either {\bf void} or {\bf int}. Functions
228 if it failed. Certain functions that return int will return $-1$ to indicate an error. These functions will be explicitl
    [all...]
  /external/clang/include/clang/Sema/
Overload.h 727 llvm::SmallPtrSet<Decl *, 16> Functions;
754 return Functions.insert(F->getCanonicalDecl());
  /external/clang/lib/Sema/
SemaAccess.cpp 97 // functions (which can gain privileges through friendship), but we
106 Functions.push_back(Function);
137 SmallVector<FunctionDecl*, 4> Functions;
485 I = EC.Functions.begin(), E = EC.Functions.end(); I != E; ++I) {
501 if (EC.Functions.empty()) return AR_inaccessible;
506 I = EC.Functions.begin(), E = EC.Functions.end(); I != E; ++I) {
784 // a static function member functions.
785 if (S.getLangOpts().MicrosoftMode && !EC.Functions.empty()
    [all...]
TreeTransform.h 62 /// or the parts of an AST node using the various transformation functions,
77 /// \c TransformXXX functions (where XXX is the name of an AST node, e.g.,
82 /// functions to control how AST nodes are rebuilt when their operands change.
87 /// There are a handful of other functions that can be overridden, allowing one
298 /// transformations) or some set of the TransformXXXType functions
    [all...]
SemaExpr.cpp 192 // FIXME: C++0x implicitly-deleted special member functions could be
    [all...]
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 3174 milliseconds