/external/skia/src/utils/ |
D | SkLua.cpp | 72 template <typename T> void push_obj(lua_State* L, const T& obj) { in push_obj() 78 template <typename T> T* push_ref(lua_State* L, T* ref) { in push_ref() 85 template <typename T> T* get_ref(lua_State* L, int index) { in get_ref() 89 template <typename T> T* get_obj(lua_State* L, int index) { in get_obj() 93 static bool lua2bool(lua_State* L, int index) { in lua2bool() 105 SkLua::SkLua(lua_State* L) : fL(L), fWeOwnL(false) {} in SkLua() 137 static void setfield_bool_if(lua_State* L, const char key[], bool pred) { in setfield_bool_if() 144 static void setfield_string(lua_State* L, const char key[], const char value[]) { in setfield_string() 149 static void setfield_number(lua_State* L, const char key[], double value) { in setfield_number() 154 static void setfield_boolean(lua_State* L, const char key[], bool value) { in setfield_boolean() [all …]
|
/external/clang/test/CodeGenCXX/ |
D | lambda-expressions-nested-linkage.cpp | 8 auto L = [](int a) { in foo() local 18 struct L { struct 19 int t = ([](int a) { return [](int b) { return b; };})(2)(3); in __anonc7bfea0a0302() 26 struct L { struct 27 T t2 = ([](int a) { return [](int b) { return b; };})(T{})(T{}); in __anonc7bfea0a0502() 45 auto L = [](int a) { in foo() local
|
D | 2007-04-10-PackedUnion.cpp | 28 class L { class 30 L() {} in L() function in L 38 L::L(const L& other) in L() function in L
|
D | nested-base-member-access.cpp | 24 struct L : IQ { struct 25 L(int i) : IQ(i+100) { iL = i; } in L() function 26 int iL; argument
|
/external/flac/libFLAC/ |
D | window.c | 46 void FLAC__window_bartlett(FLAC__real *window, const FLAC__int32 L) in FLAC__window_bartlett() 65 void FLAC__window_bartlett_hann(FLAC__real *window, const FLAC__int32 L) in FLAC__window_bartlett_hann() 74 void FLAC__window_blackman(FLAC__real *window, const FLAC__int32 L) in FLAC__window_blackman() 84 void FLAC__window_blackman_harris_4term_92db_sidelobe(FLAC__real *window, const FLAC__int32 L) in FLAC__window_blackman_harris_4term_92db_sidelobe() 93 void FLAC__window_connes(FLAC__real *window, const FLAC__int32 L) in FLAC__window_connes() 106 void FLAC__window_flattop(FLAC__real *window, const FLAC__int32 L) in FLAC__window_flattop() 115 void FLAC__window_gauss(FLAC__real *window, const FLAC__int32 L, const FLAC__real stddev) in FLAC__window_gauss() 127 void FLAC__window_hamming(FLAC__real *window, const FLAC__int32 L) in FLAC__window_hamming() 136 void FLAC__window_hann(FLAC__real *window, const FLAC__int32 L) in FLAC__window_hann() 145 void FLAC__window_kaiser_bessel(FLAC__real *window, const FLAC__int32 L) in FLAC__window_kaiser_bessel() [all …]
|
/external/llvm/include/llvm/IR/ |
D | PatternMatch.h | 87 LTy L; member 102 LTy L; member 117 inline match_combine_or<LTy, RTy> m_CombineOr(const LTy &L, const RTy &R) { in m_CombineOr() 123 inline match_combine_and<LTy, RTy> m_CombineAnd(const LTy &L, const RTy &R) { in m_CombineAnd() 393 LHS_t L; member 406 inline AnyBinaryOp_match<LHS, RHS> m_BinOp(const LHS &L, const RHS &R) { in m_BinOp() 416 LHS_t L; member 434 inline BinaryOp_match<LHS, RHS, Instruction::Add> m_Add(const LHS &L, in m_Add() 440 inline BinaryOp_match<LHS, RHS, Instruction::FAdd> m_FAdd(const LHS &L, in m_FAdd() 446 inline BinaryOp_match<LHS, RHS, Instruction::Sub> m_Sub(const LHS &L, in m_Sub() [all …]
|
/external/clang/test/SemaCXX/ |
D | cxx1y-generic-lambdas-variadics.cpp | 17 auto L = [](auto ... as) { }; in test() local 21 auto L = [](auto a) { }; in test() local 25 auto L = [](auto a, auto b) { }; in test() local 29 auto L = [](auto a, auto b) { }; in test() local 33 auto L = [](auto a, auto b, auto ... cs) { }; in test() local 39 auto L = [](auto ... As) { in test() local 44 auto L = [](auto A, auto B, auto ... As) { in test() local 51 auto L = [](auto ... As) { in test() local 64 auto L = [](auto A, auto ... As) { in test() local
|
D | cxx1y-init-captures.cpp | 12 auto L = [x = f([&a(t)]()->decltype(auto) { return a; }()...)]() { return x; }; in g() local 42 auto L = [z = x + 2](int a) { in test() local 52 auto L = [&z = x](int a) { in test() local 59 auto L = [k = x](char a) { //expected-note {{declared}} in test() local 69 auto L = [k = x](char a) { in test() local 79 auto L = [k = x](char a) { in test() local 102 auto L = [z = x](char a) { in __anonce841e441102() local 112 auto L = [&z = x](T a) { in __anonce841e441302() local 119 auto L = [z = x](char a) { //expected-note {{begins}} in __anonce841e441402() local 129 auto L = [=,z = x](char a) { in __anonce841e441602() local [all …]
|
D | cxx1y-generic-lambdas-capturing.cpp | 21 #define ASSERT_NO_CAPTURES(L) static_assert(sizeof(L) == 1, "size of closure with no captures must … argument 22 #define ASSERT_CLOSURE_SIZE_EXACT(L, N) static_assert(sizeof(L) == (N), "size of closure must be " … argument 23 #define ASSERT_CLOSURE_SIZE(L, N) static_assert(sizeof(L) >= (N), "size of closure must be >=" #N) argument 35 auto L = [](auto a) { return a; }; in foo() local 38 auto L = [](auto a) -> void { in foo2() local 63 auto L = [](auto a, auto b) { in doit() local 94 auto L = [=](auto a) { in doit() local 102 auto L = [](auto a) { //expected-note{{begins here}} in doit() local 111 auto L = [=](auto a) { in doit() local 129 auto L = [=](auto a) { in doit() local [all …]
|
D | cxx1y-generic-lambdas.cpp | 12 auto L = [i](auto a) { return i + a; }; in test() local 19 auto L = [](auto a) { return a; }; in test() local 43 auto L = [](auto a) { return a; }; in test() local 56 auto L = [](auto a) ->int { return a; }; //expected-note 2{{candidate template ignored}} in test() local 63 auto L = [=](auto b, char c = 'x') { in test() local 79 auto L = [=](auto b) { in test() local 93 auto L = [=](auto b) { in test() local 106 auto L = [=](auto b) { in test() local 151 auto L = [](auto a) { return a; }; in test() local 164 auto L = [](auto a) ->int { return a; }; //expected-note 2{{candidate template ignored}} in test() local [all …]
|
/external/v8/src/mips/ |
D | assembler-mips.h | 419 inline bool is_near_pre_r6(Label* L) { in is_near_pre_r6() 423 inline bool is_near_r6(Label* L) { in is_near_r6() 434 inline int32_t branch_offset(Label* L) { in branch_offset() 437 inline int32_t branch_offset21(Label* L) { in branch_offset21() 440 inline int32_t branch_offset26(Label* L) { in branch_offset26() 443 inline int32_t shifted_branch_offset(Label* L) { in shifted_branch_offset() 446 inline int32_t shifted_branch_offset21(Label* L) { in shifted_branch_offset21() 449 inline int32_t shifted_branch_offset26(Label* L) { in shifted_branch_offset26() 590 inline void b(Label* L) { b(shifted_branch_offset(L)); } in b() 592 inline void bal(Label* L) { bal(shifted_branch_offset(L)); } in bal() [all …]
|
/external/v8/src/mips64/ |
D | assembler-mips64.h | 422 inline bool is_near_pre_r6(Label* L) { in is_near_pre_r6() 426 inline bool is_near_r6(Label* L) { in is_near_r6() 437 inline int32_t branch_offset(Label* L) { in branch_offset() 440 inline int32_t branch_offset21(Label* L) { in branch_offset21() 443 inline int32_t branch_offset26(Label* L) { in branch_offset26() 446 inline int32_t shifted_branch_offset(Label* L) { in shifted_branch_offset() 449 inline int32_t shifted_branch_offset21(Label* L) { in shifted_branch_offset21() 452 inline int32_t shifted_branch_offset26(Label* L) { in shifted_branch_offset26() 594 inline void b(Label* L) { b(shifted_branch_offset(L)); } in b() 596 inline void bal(Label* L) { bal(shifted_branch_offset(L)); } in bal() [all …]
|
/external/clang/include/clang/Analysis/ |
D | ProgramPoint.h | 71 llvm::PointerIntPair<const LocationContext *, 2, unsigned> L; variable 197 : ProgramPoint(B, BlockEntranceKind, L, tag) { in ProgramPoint() argument 220 BlockExit(const CFGBlock *B, const LocationContext *L) in BlockExit() 241 StmtPoint(const Stmt *S, const void *p2, Kind k, const LocationContext *L, in StmtPoint() 267 : StmtPoint(S, SubStmt, PreStmtKind, L, tag) {} in StmtPoint() argument 284 : StmtPoint(S, data, k, L, tag) {} in StmtPoint() argument 289 : StmtPoint(S, nullptr, k, L, tag) {} in StmtPoint() argument 293 : StmtPoint(S, nullptr, PostStmtKind, L, tag) {} in StmtPoint() argument 308 : PostStmt(S, PostConditionKind, L, tag) {} in PostStmt() argument 321 LocationCheck(const Stmt *S, const LocationContext *L, in LocationCheck() [all …]
|
/external/skia/samplecode/ |
D | SampleLua.cpp | 46 void setImageFilename(lua_State* L) { in setImageFilename() 83 lua_State* L = this->ensureLua(); in onQuery() local 103 lua_State* L = this->ensureLua(); in onDrawContent() local 128 lua_State* L = this->ensureLua(); in onFindClickHandler() local 166 lua_State* L = fLua->get(); in onClick() local
|
/external/llvm/tools/llvm-diff/ |
D | DifferenceEngine.cpp | 82 unsigned L = R - 1; in remove_min() local 156 bool tryUnify(BasicBlock *L, BasicBlock *R) { in tryUnify() 175 void unify(Instruction *L, Instruction *R) { in unify() 192 void diff(BasicBlock *L, BasicBlock *R) { in diff() 226 bool diffCallSites(CallSite L, CallSite R, bool Complain) { in diffCallSites() 246 bool diff(Instruction *L, Instruction *R, bool Complain, bool TryUnify) { in diff() 364 bool equivalentAsOperands(Constant *L, Constant *R) { in equivalentAsOperands() 396 bool equivalentAsOperands(ConstantExpr *L, ConstantExpr *R) { in equivalentAsOperands() 427 bool equivalentAsOperands(Value *L, Value *R) { in equivalentAsOperands() 459 void diff(Function *L, Function *R) { in diff() [all …]
|
/external/llvm/include/llvm/Analysis/ |
D | LoopPass.h | 46 virtual bool doInitialization(Loop *L, LPPassManager &LPM) { in doInitialization() 80 virtual void cloneBasicBlockAnalysis(BasicBlock *F, BasicBlock *T, Loop *L) {} in cloneBasicBlockAnalysis() 83 virtual void deleteAnalysisValue(Value *V, Loop *L) {} in deleteAnalysisValue() 88 virtual void deleteAnalysisLoop(Loop *L) {} in deleteAnalysisLoop()
|
/external/llvm/include/llvm/MC/ |
D | MCDwarf.h | 357 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int O, StringRef V) in MCCFIInstruction() 363 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R1, unsigned R2) in MCCFIInstruction() 371 static MCCFIInstruction createDefCfa(MCSymbol *L, unsigned Register, in createDefCfa() 378 static MCCFIInstruction createDefCfaRegister(MCSymbol *L, unsigned Register) { in createDefCfaRegister() 385 static MCCFIInstruction createDefCfaOffset(MCSymbol *L, int Offset) { in createDefCfaOffset() 392 static MCCFIInstruction createAdjustCfaOffset(MCSymbol *L, int Adjustment) { in createAdjustCfaOffset() 398 static MCCFIInstruction createOffset(MCSymbol *L, unsigned Register, in createOffset() 406 static MCCFIInstruction createRelOffset(MCSymbol *L, unsigned Register, in createRelOffset() 413 static MCCFIInstruction createRegister(MCSymbol *L, unsigned Register1, in createRegister() 419 static MCCFIInstruction createWindowSave(MCSymbol *L) { in createWindowSave() [all …]
|
/external/llvm/lib/Support/ |
D | Timer.cpp | 200 sys::SmartScopedLock<true> L(*TimerLock); in get() local 220 sys::SmartScopedLock<true> L(*TimerLock); in getNamedRegionTimer() local 248 sys::SmartScopedLock<true> L(*TimerLock); in TimerGroup() local 263 sys::SmartScopedLock<true> L(*TimerLock); in ~TimerGroup() local 271 sys::SmartScopedLock<true> L(*TimerLock); in removeTimer() local 294 sys::SmartScopedLock<true> L(*TimerLock); in addTimer() local 355 sys::SmartScopedLock<true> L(*TimerLock); in print() local 375 sys::SmartScopedLock<true> L(*TimerLock); in printAll() local
|
/external/clang/include/clang/Basic/ |
D | Visibility.h | 47 inline Visibility minVisibility(Visibility L, Visibility R) { in minVisibility() 60 LinkageInfo(Linkage L, Visibility V, bool E) in LinkageInfo() 83 void setLinkage(Linkage L) { linkage_ = L; } in setLinkage() 85 void mergeLinkage(Linkage L) { in mergeLinkage() 92 void mergeExternalVisibility(Linkage L) { in mergeExternalVisibility()
|
/external/llvm/lib/Analysis/ |
D | LoopPass.cpp | 44 bool runOnLoop(Loop *L, LPPassManager &) override { in runOnLoop() 68 Loop *L = new Loop(); in addLoop() local 94 BasicBlock *To, Loop *L) { in cloneBasicBlockSimpleAnalysis() 102 void LPPassManager::deleteSimpleAnalysisValue(Value *V, Loop *L) { in deleteSimpleAnalysisValue() 117 void LPPassManager::deleteSimpleAnalysisLoop(Loop *L) { in deleteSimpleAnalysisLoop() 126 static void addLoopIntoQueue(Loop *L, std::deque<Loop *> &LQ) { in addLoopIntoQueue() 168 Loop *L = *I; in runOnFunction() local
|
/external/libopus/silk/ |
D | sort.c | 43 const opus_int L, /* I Vector length */ in silk_insertion_sort_increasing() 91 …const opus_int L, /* I Vector length … in silk_insertion_sort_decreasing_int16() 137 …const opus_int L /* I Vector length … in silk_insertion_sort_increasing_all_values_int16()
|
/external/clang/test/CodeGen/ |
D | 2002-07-14-MiscListTests.c | 10 struct list *PassThroughList(struct list *L) { in PassThroughList() 41 void InsertIntoListTail(list **L, int Data) { in InsertIntoListTail() 50 list *FindData(list *L, int Data) { in FindData()
|
/external/libopus/silk/float/ |
D | solve_LS_FLP.c | 81 silk_float L[ MAX_MATRIX_SIZE ][ MAX_MATRIX_SIZE ]; in silk_solve_LDL_FLP() local 113 …const silk_float *L, /* I Pointer to Lower Triangular Matrix … in silk_SolveWithUpperTriangularFromLowerWdiagOnes_FLP() 135 …const silk_float *L, /* I Pointer to Lower Triangular Matrix … in silk_SolveWithLowerTriangularWdiagOnes_FLP() 159 …silk_float *L, /* I/O Pointer to Square Upper triangular Matrix … in silk_LDL_FLP()
|
/external/llvm/include/llvm/ADT/ |
D | ImmutableList.h | 44 const ImmutableListImpl* L){ in Profile() 82 const ImmutableListImpl<T>* L; variable 118 bool isEqual(const ImmutableList& L) const { return X == L.X; } in isEqual() 173 ListTy* L = Cache.FindNodeOrInsertPos(ID, InsertPos); in concat() local 188 ImmutableList<T> add(const T& D, ImmutableList<T> L) { in add()
|
/external/llvm/unittests/IR/ |
D | PatternMatch.cpp | 70 Value *L = ConstantFP::get(FltTy, 1.0); in TEST_F() local 109 Value *L = ConstantFP::get(FltTy, 1.0); in TEST_F() local 148 Value *L = ConstantFP::get(FltTy, 1.0); in TEST_F() local 187 Value *L = ConstantFP::get(FltTy, 1.0); in TEST_F() local 225 Value *L = IRB.getInt32(1); in TEST_F() local
|