Home
last modified time | relevance | path

Searched defs:L (Results 1 – 25 of 602) sorted by relevance

12345678910>>...25

/external/skia/src/utils/
DSkLua.cpp68 template <typename T> void push_obj(lua_State* L, const T& obj) { in push_obj()
74 template <typename T> T* push_ref(lua_State* L, T* ref) { in push_ref()
81 template <typename T> T* get_ref(lua_State* L, int index) { in get_ref()
85 template <typename T> T* get_obj(lua_State* L, int index) { in get_obj()
89 static bool lua2bool(lua_State* L, int index) { in lua2bool()
101 SkLua::SkLua(lua_State* L) : fL(L), fWeOwnL(false) {} in SkLua()
133 static void setfield_bool_if(lua_State* L, const char key[], bool pred) { in setfield_bool_if()
140 static void setfield_string(lua_State* L, const char key[], const char value[]) { in setfield_string()
145 static void setfield_number(lua_State* L, const char key[], double value) { in setfield_number()
150 static void setfield_boolean(lua_State* L, const char key[], bool value) { in setfield_boolean()
[all …]
/external/clang/test/CodeGenCXX/
Dlambda-expressions-nested-linkage.cpp8 auto L = [](int a) { in foo() local
18 struct L { struct
19 int t = ([](int a) { return [](int b) { return b; };})(2)(3); in __anon370c2c450402()
26 struct L { struct
27 T t2 = ([](int a) { return [](int b) { return b; };})(T{})(T{}); in __anon370c2c450602()
45 auto L = [](int a) { in foo() local
D2007-04-10-PackedUnion.cpp28 class L { class
30 L() {} in L() function in L
38 L::L(const L& other) in L() function in L
Dnested-base-member-access.cpp24 struct L : IQ { struct
25 L(int i) : IQ(i+100) { iL = i; } in L() argument
26 int iL; argument
/external/flac/libFLAC/
Dwindow.c46 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/
DPatternMatch.h87 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/
Dcxx1y-generic-lambdas-variadics.cpp17 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
Dcxx1y-init-captures.cpp12 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 __anon3d5f2f1f1102() local
112 auto L = [&z = x](T a) { in __anon3d5f2f1f1302() local
119 auto L = [z = x](char a) { //expected-note {{begins}} in __anon3d5f2f1f1402() local
129 auto L = [=,z = x](char a) { in __anon3d5f2f1f1602() local
[all …]
Dcxx1y-generic-lambdas-capturing.cpp21 #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 …]
Dcxx1y-generic-lambdas.cpp12 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/openfst/src/include/fst/
Dstring-weight.h167 explicit StringWeightIterator(const StringWeight<L, S>& w) in StringWeightIterator()
202 explicit StringWeightReverseIterator(const StringWeight<L, S>& w) in StringWeightReverseIterator()
370 Plus(const StringWeight<L, S> &w1, in Plus()
393 Plus(const StringWeight<L, STRING_LEFT> &w1, in Plus()
414 Plus(const StringWeight<L, STRING_RIGHT> &w1, in Plus()
434 inline StringWeight<L, S> Times(const StringWeight<L, S> &w1, in Times()
452 Divide(const StringWeight<L, S> &w1, in Divide()
482 Divide(const StringWeight<L, STRING_RIGHT> &w1, in Divide()
512 Divide(const StringWeight<L, STRING_RIGHT_RESTRICT> &w1, in Divide()
/external/llvm/lib/Analysis/
DLoopPass.cpp44 bool runOnLoop(Loop *L, LPPassManager &) override { in runOnLoop()
76 void LPPassManager::deleteLoopFromQueue(Loop *L) { in deleteLoopFromQueue()
104 void LPPassManager::insertLoop(Loop *L, Loop *ParentLoop) { in insertLoop()
117 void LPPassManager::insertLoopIntoQueue(Loop *L) { in insertLoopIntoQueue()
141 void LPPassManager::redoLoop(Loop *L) { in redoLoop()
149 BasicBlock *To, Loop *L) { in cloneBasicBlockSimpleAnalysis()
157 void LPPassManager::deleteSimpleAnalysisValue(Value *V, Loop *L) { in deleteSimpleAnalysisValue()
172 void LPPassManager::deleteSimpleAnalysisLoop(Loop *L) { in deleteSimpleAnalysisLoop()
181 static void addLoopIntoQueue(Loop *L, std::deque<Loop *> &LQ) { in addLoopIntoQueue()
223 Loop *L = *I; in runOnFunction() local
/external/v8/src/mips/
Dassembler-mips.h473 int32_t shifted_branch_offset(Label* L, bool jump_elimination_allowed) { in shifted_branch_offset()
478 int32_t shifted_branch_offset_compact(Label* L, in shifted_branch_offset_compact()
632 void b(Label* L) { b(branch_offset(L, false)>>2); } in b()
634 void bal(Label* L) { bal(branch_offset(L, false)>>2); } in bal()
637 void beq(Register rs, Register rt, Label* L) { in beq()
642 void bgezc(Register rt, Label* L) { in bgezc()
646 void bgeuc(Register rs, Register rt, Label* L) { in bgeuc()
650 void bgec(Register rs, Register rt, Label* L) { in bgec()
655 void bgezalc(Register rt, Label* L) { in bgezalc()
659 void bgezall(Register rs, Label* L) { in bgezall()
[all …]
/external/v8/src/mips64/
Dassembler-mips64.h463 int32_t shifted_branch_offset(Label* L, bool jump_elimination_allowed) { in shifted_branch_offset()
468 int32_t shifted_branch_offset_compact(Label* L, in shifted_branch_offset_compact()
623 void b(Label* L) { b(branch_offset(L, false)>>2); } in b()
625 void bal(Label* L) { bal(branch_offset(L, false)>>2); } in bal()
628 void beq(Register rs, Register rt, Label* L) { in beq()
633 void bgezc(Register rt, Label* L) { in bgezc()
637 void bgeuc(Register rs, Register rt, Label* L) { in bgeuc()
641 void bgec(Register rs, Register rt, Label* L) { in bgec()
646 void bgezalc(Register rt, Label* L) { in bgezalc()
650 void bgezall(Register rs, Label* L) { in bgezall()
[all …]
/external/clang/include/clang/Analysis/
DProgramPoint.h71 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/
DSampleLua.cpp48 void setImageFilename(lua_State* L) { in setImageFilename()
85 lua_State* L = this->ensureLua(); in onQuery() local
105 lua_State* L = this->ensureLua(); in onDrawContent() local
130 lua_State* L = this->ensureLua(); in onFindClickHandler() local
168 lua_State* L = fLua->get(); in onClick() local
/external/llvm/tools/llvm-diff/
DDifferenceEngine.cpp82 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/MC/
DMCDwarf.h336 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R, int O, StringRef V) in MCCFIInstruction()
342 MCCFIInstruction(OpType Op, MCSymbol *L, unsigned R1, unsigned R2) in MCCFIInstruction()
350 static MCCFIInstruction createDefCfa(MCSymbol *L, unsigned Register, in createDefCfa()
357 static MCCFIInstruction createDefCfaRegister(MCSymbol *L, unsigned Register) { in createDefCfaRegister()
364 static MCCFIInstruction createDefCfaOffset(MCSymbol *L, int Offset) { in createDefCfaOffset()
371 static MCCFIInstruction createAdjustCfaOffset(MCSymbol *L, int Adjustment) { in createAdjustCfaOffset()
377 static MCCFIInstruction createOffset(MCSymbol *L, unsigned Register, in createOffset()
385 static MCCFIInstruction createRelOffset(MCSymbol *L, unsigned Register, in createRelOffset()
392 static MCCFIInstruction createRegister(MCSymbol *L, unsigned Register1, in createRegister()
398 static MCCFIInstruction createWindowSave(MCSymbol *L) { in createWindowSave()
[all …]
/external/llvm/lib/Support/
DTimer.cpp207 sys::SmartScopedLock<true> L(*TimerLock); in get() local
227 sys::SmartScopedLock<true> L(*TimerLock); in getNamedRegionTimer() local
255 sys::SmartScopedLock<true> L(*TimerLock); in TimerGroup() local
270 sys::SmartScopedLock<true> L(*TimerLock); in ~TimerGroup() local
278 sys::SmartScopedLock<true> L(*TimerLock); in removeTimer() local
302 sys::SmartScopedLock<true> L(*TimerLock); in addTimer() local
363 sys::SmartScopedLock<true> L(*TimerLock); in print() local
383 sys::SmartScopedLock<true> L(*TimerLock); in printAll() local
/external/llvm/include/llvm/Analysis/
DLoopPass.h46 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/clang/include/clang/Basic/
DVisibility.h47 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/libopus/silk/
Dsort.c43 const opus_int L, /* I Vector length */ in silk_insertion_sort_increasing()
91const opus_int L, /* I Vector length … in silk_insertion_sort_decreasing_int16()
137const opus_int L /* I Vector length … in silk_insertion_sort_increasing_all_values_int16()
/external/clang/test/CodeGen/
D2002-07-14-MiscListTests.c10 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/llvm/lib/Transforms/Scalar/
DLoopUnrollPass.cpp156 void getUnrollingPreferences(Loop *L, const TargetTransformInfo &TTI, in getUnrollingPreferences()
186 void selectThresholds(const Loop *L, bool HasPragma, in selectThresholds()
270 const Loop *L; member
331 const Loop *L; member in __anon0cdda4420211::UnrollAnalyzer
428 UnrollAnalyzer(const Loop *L, unsigned TripCount, ScalarEvolution &SE, in UnrollAnalyzer()
553 approximateNumberOfOptimizedInstructions(const Loop *L, ScalarEvolution &SE, in approximateNumberOfOptimizedInstructions()
580 static unsigned ApproximateLoopSize(const Loop *L, unsigned &NumCalls, in ApproximateLoopSize()
610 static MDNode *GetUnrollMetadataForLoop(const Loop *L, StringRef Name) { in GetUnrollMetadataForLoop()
617 static bool HasUnrollFullPragma(const Loop *L) { in HasUnrollFullPragma()
622 static bool HasUnrollDisablePragma(const Loop *L) { in HasUnrollDisablePragma()
[all …]
/external/libopus/silk/float/
Dsolve_LS_FLP.c81 silk_float L[ MAX_MATRIX_SIZE ][ MAX_MATRIX_SIZE ]; in silk_solve_LDL_FLP() local
113const silk_float *L, /* I Pointer to Lower Triangular Matrix … in silk_SolveWithUpperTriangularFromLowerWdiagOnes_FLP()
135const silk_float *L, /* I Pointer to Lower Triangular Matrix … in silk_SolveWithLowerTriangularWdiagOnes_FLP()
159silk_float *L, /* I/O Pointer to Square Upper triangular Matrix … in silk_LDL_FLP()

12345678910>>...25