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

1 2

  /external/libvorbis/doc/
09-helper.tex 13 \subsection{Functions}
  /external/bison/doc/
refcard.tex 468 \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/llvm/tools/llvm-symbolizer/
LLVMSymbolize.h 90 SymbolMapTy Functions;
  /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 167 SmallVector<GCOVFunction *, 16> Functions;
  /external/llvm/lib/Analysis/IPA/
CallGraphSCCPass.cpp 14 // recursive functions, which they process all at once.
142 // Run pass P on all functions in the current SCC.
163 /// RefreshCallGraph - Scan the functions in the specified CFG and resync the
187 // Scan all functions in the SCC.
214 // constant folding happens of well known functions etc.
387 std::string Functions;
389 raw_string_ostream OS(Functions);
397 dumpPassInfo(P, EXECUTION_MSG, ON_CG_MSG, Functions);
442 // functions in this SCC. However, we support iterative compilation in the
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 11 // Amplifier XE 2011 about JITted functions.
194 MethodAddressVector Functions;
196 // Use symbol info to iterate functions in the object.
216 Functions.push_back((void*)Addr);
257 LoadedObjectMap[ObjData] = Functions;
268 MethodAddressVector& Functions = OI->second;
271 for (MethodAddressVector::iterator FI = Functions.begin(),
272 FE = Functions.end();
  /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();
332 FunctionListTy Functions;
346 // Insert the functions from the function starts segment into our map.
469 InstrAnalysis.get(), Start, DebugOut, FunctionMap, Functions);
506 FunctionMap, Functions);
511 // Create functions for the remaining callees we have gathered,
523 Functions.push_back(f);
524 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 745 llvm::SmallPtrSet<Decl *, 16> Functions;
770 return Functions.insert(F->getCanonicalDecl());
  /external/clang/lib/Sema/
SemaAccess.cpp 97 // functions (which can gain privileges through friendship), but we
112 Functions.push_back(Function->getCanonicalDecl());
142 SmallVector<FunctionDecl*, 4> Functions;
501 I = EC.Functions.begin(), E = EC.Functions.end(); I != E; ++I) {
517 if (EC.Functions.empty()) return AR_inaccessible;
522 I = EC.Functions.begin(), E = EC.Functions.end(); I != E; ++I) {
800 // static member functions.
801 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
295 /// transformations) or some set of the TransformXXXType functions
    [all...]
SemaExpr.cpp 207 // wrappers for simple C library functions.
    [all...]
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 

Completed in 473 milliseconds

1 2