Home
last modified time | relevance | path

Searched defs:FuncDef (Results 1 – 6 of 6) sorted by relevance

/external/speex/libspeexdsp/
Dresample.c194 struct FuncDef { struct
199 static const struct FuncDef _KAISER12 = {kaiser12_table, 64}; argument
/external/llvm-project/clang-tools-extra/clangd/refactor/tweaks/
DDefineOutline.cpp424 auto FuncDef = getFunctionSourceCode( in apply() local
/external/rust/crates/libsqlite3-sys/sqlite3/
Dsqlite3.c14671 typedef struct FuncDef FuncDef; typedef
17096 struct FuncDef { struct
17100 FuncDef *pNext; /* Next function with same name */ argument
17107 FuncDef *pHash; /* Next with a different name but the same hash */ argument
17117 ** the number of FuncDef objects created (either 1 or 3, depending on whether argument
/external/sqlite/dist/orig/
Dsqlite3.c14643 typedef struct FuncDef FuncDef; typedef
17065 struct FuncDef { struct
17069 FuncDef *pNext; /* Next function with same name */ argument
17076 FuncDef *pHash; /* Next with a different name but the same hash */ argument
17086 ** the number of FuncDef objects created (either 1 or 3, depending on whether argument
/external/sqlite/dist/
Dsqlite3.c14643 typedef struct FuncDef FuncDef; typedef
17065 struct FuncDef { struct
17069 FuncDef *pNext; /* Next function with same name */ argument
17076 FuncDef *pHash; /* Next with a different name but the same hash */ argument
17086 ** the number of FuncDef objects created (either 1 or 3, depending on whether argument
/external/python/pycparser/pycparser/
Dc_ast.py656 class FuncDef(Node): class