Searched defs:FN (Results 26 - 49 of 49) sorted by relevance

12

/external/brotli/c/enc/
H A Dhash_forgetful_chain_inc.h8 /* template parameters: FN, BUCKET_BITS, NUM_BANKS, BANK_BITS,
27 static BROTLI_INLINE size_t FN(HashTypeLength)(void) { return 4; }
28 static BROTLI_INLINE size_t FN(StoreLookahead)(void) { return 4; }
31 static BROTLI_INLINE size_t FN(HashBytes)(const uint8_t *data) {
38 typedef struct FN(Slot) { function
41 } FN(Slot);
43 typedef struct FN(Bank) { function
44 FN(Slot) slots[BANK_SIZE];
45 } FN(Bank);
52 FN(Ban
[all...]
H A Dhash.h243 #define FN(X) EXPAND_CAT(X, HASHER()) macro
341 #undef FN macro
H A Dmetablock.c147 #define FN(X) X ## Literal macro
149 #undef FN macro
151 #define FN(X) X ## Command macro
153 #undef FN macro
155 #define FN(X) X ## Distance macro
157 #undef FN macro
H A Dbrotli_bit_stream.c927 #define FN(X) X ## Literal macro
930 #undef FN macro
932 #define FN(X) X ## Command macro
935 #undef FN macro
937 #define FN(X) X ## Distance macro
940 #undef FN macro
/external/llvm/lib/Support/
H A DSourceMgr.cpp232 SMDiagnostic::SMDiagnostic(const SourceMgr &sm, SMLoc L, StringRef FN, argument
237 : SM(&sm), Loc(L), Filename(FN), LineNo(Line), ColumnNo(Col), Kind(Kind),
H A Draw_ostream.cpp412 raw_ostream &raw_ostream::operator<<(const FormattedNumber &FN) { argument
413 if (FN.Hex) {
414 unsigned Nibbles = (64 - countLeadingZeros(FN.HexValue)+3)/4;
415 unsigned PrefixChars = FN.HexPrefix ? 2 : 0;
416 unsigned Width = std::max(FN.Width, Nibbles + PrefixChars);
419 if (!FN.HexPrefix)
423 unsigned long long N = FN.HexValue;
426 *--CurPtr = hexdigit(x, !FN.Upper);
433 if (FN.DecValue == 0) {
434 this->indent(FN
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/PTX/
H A DPTXAsmPrinter.cpp162 StringRef FN = DIUnit.getFilename(); local
164 GetOrCreateSourceID(FN, Dir);
/external/clang/include/clang/Basic/
H A DSourceLocation.h362 PresumedLoc(const char *FN, unsigned Ln, unsigned Co, SourceLocation IL) argument
363 : Filename(FN), Line(Ln), Col(Co), IncludeLoc(IL) {
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A Draw_ostream.cpp339 raw_ostream &raw_ostream::operator<<(const FormattedNumber &FN) { argument
340 if (FN.Hex) {
342 if (FN.Upper && FN.HexPrefix)
344 else if (FN.Upper && !FN.HexPrefix)
346 else if (!FN.Upper && FN.HexPrefix)
350 llvm::write_hex(*this, FN.HexValue, Style, FN
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/TableGen/
H A DRecord.h1225 FieldInit(Init *R, const std::string &FN) argument
1226 : TypedInit(R->getFieldType(FN)), Rec(R), FieldName(FN) {
1234 static FieldInit *get(Init *R, const std::string &FN);
1235 static FieldInit *get(Init *R, const Init *FN);
/external/llvm/include/llvm/TableGen/
H A DRecord.h1077 FieldInit(Init *R, const std::string &FN) argument
1078 : TypedInit(IK_FieldInit, R->getFieldType(FN)), Rec(R), FieldName(FN) {
1089 static FieldInit *get(Init *R, const std::string &FN);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp386 StringRef FN = DIUnit->getFilename(); local
411 NewCU.addString(Die, dwarf::DW_AT_name, FN);
/external/llvm/lib/TableGen/
H A DRecord.cpp1455 FieldInit *FieldInit::get(Init *R, const std::string &FN) { argument
1459 Key TheKey(std::make_pair(R, FN));
1462 if (!I) I.reset(new FieldInit(R, FN));
/external/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp1441 void replaceFunctionInTree(const FunctionNode &FN, Function *G);
1450 // there is exactly one mapping F -> FN for each FunctionNode FN in FnTree.
1775 void MergeFunctions::replaceFunctionInTree(const FunctionNode &FN, argument
1777 Function *F = FN.getFunc();
1786 assert(&(*IterToFNInFnTree) == &FN && "F should map to FN in FNodesInTree.");
1787 // Remove F -> FN and insert G -> FN
1790 // Replace F with G in FN, whic
[all...]
/external/mksh/src/
H A Dmisc.c92 #define FN(sname,cname,flags,ochar) \ macro
H A Dfuncs.c3266 #define FN(lname,lid,lfac,lopt) \ macro
/external/opencv/cvaux/include/
H A Dcvvidsurv.hpp274 char* FN = NULL; local
280 FN = N;
285 FN = strcat(tmp,N);
288 if(!IsParam(FN))
292 AddParam(FN,(char**)NULL);
296 AddParam(FN);
302 SetParamStr(FN,val);
307 SetParam(FN,val);
309 CommentParam(FN, pM->GetParamComment(N));
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp470 StringRef FN = DIUnit.getFilename(); local
472 unsigned ID = GetOrCreateSourceID(FN, Dir);
480 NewCU->addString(Die, dwarf::DW_AT_name, dwarf::DW_FORM_string, FN);
/external/swiftshader/third_party/LLVM/lib/TableGen/
H A DRecord.cpp1489 FieldInit *FieldInit::get(Init *R, const std::string &FN) { argument
1494 Key TheKey(std::make_pair(R, FN));
1497 if (!I) I = new FieldInit(R, FN);
/external/clang/include/clang/AST/
H A DExpr.h2149 enum { FN=0, PREARGS_START=1 }; enumerator in enum:clang::StringLiteral::final::CallExpr::__anon1193
2188 const Expr *getCallee() const { return cast<Expr>(SubExprs[FN]); }
2189 Expr *getCallee() { return cast<Expr>(SubExprs[FN]); }
2190 void setCallee(Expr *F) { SubExprs[FN] = F; }
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp928 auto *FN = newSDNode<BinaryWithFlagsSDNode>(Opcode, DL.getIROrder(), local
930 createOperands(FN, Ops);
932 return FN;
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
/external/annotation-tools/asmx/test/lib/
H A Dsaxon7.jarMETA-INF/ META-INF/MANIFEST.MF net/sf/saxon/Compile.class Compile.java package ...

Completed in 1100 milliseconds

12