Home
last modified time | relevance | path

Searched full:call (Results 1 – 25 of 5939) sorted by relevance

12345678910>>...238

/freebsd/contrib/netbsd-tests/lib/libcurses/tests/
H A Dcopywin3 call win2 newwin 7 9 10 14
5 call OK wrefresh $win2
7 call OK mvwprintw $win1 0 0 "%s" "testin"
8 call OK mvwprintw $win1 1 0 "%s" "gtesti"
9 call OK mvwprintw $win1 2 0 "%s" "ngtest"
10 call OK mvwprintw $win1 3 0 "%s" "ingtes"
11 call OK mvwprintw $win1 4 0 "%s" "tingte"
12 call OK mvwprintw $win1 5 0 "%s" "stingt"
13 call OK wrefresh $win1
15 call OK copywin $win1 $win2 0 0 1 1 7 7 0
[all …]
H A Dclear2 call OK clear
3 call OK refresh
5 call OK move 5 5
6 call OK addstr "abcde"
7 call OK move 20 5
8 call OK addstr "fghij"
9 call OK move 10 5
10 call OK refresh
12 call OK clrtobot
13 call OK refresh
[all …]
H A Dfill_screen6 call OK mvaddstr 0 0 "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE"
7 call OK mvaddstr 1 0 "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE"
8 call OK mvaddstr 2 0 "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE"
9 call OK mvaddstr 3 0 "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE"
10 call OK mvaddstr 4 0 "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE"
11 call OK mvaddstr 5 0 "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE"
12 call OK mvaddstr 6 0 "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE"
13 call OK mvaddstr 7 0 "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE"
14 call OK mvaddstr 8 0 "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE"
15 call OK mvaddstr 9 0 "EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE"
[all …]
H A Dbackground2 call OK bkgd `\002A`
3 call OK refresh
6 call OK printw "%s" "a test string"
7 call OK refresh
9 call win1 newwin 6 6 2 5
11 call OK wprintw $win1 "%s" "window 1"
12 # call OK refresh
13 call OK wrefresh $win1
15 call OK wbkgd $win1 `\004B`
16 call OK refresh
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVBuiltins.cpp173 /// Parses the name part of the demangled builtin call.
182 // Extract the builtin function name and types of arguments from the call in lookupBuiltinNameHelper()
210 /// Looks up the demangled builtin call in the SPIRVBuiltins.td records using
219 /// \returns Wrapper around the demangled call and found builtin definition.
239 // If the initial look up was unsuccessful and the demangled call takes at in lookupBuiltin()
373 // the function call be an intrinsic, which is not. Instead, we rely on being in getBlockStructType()
575 const SPIRV::IncomingCall *Call, in buildOpFromWrapper() argument
581 MIB.addDef(Call->ReturnRegister).addUse(TypeReg);
582 unsigned Sz = Call->Arguments.size() - ImmArgs.size();
584 Register ArgReg = Call->Arguments[i];
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DSmartPtrModeling.cpp45 : public Checker<eval::Call, check::DeadSymbols, check::RegionChanges,
48 bool isBoolConversionMethod(const CallEvent &Call) const;
53 bool evalCall(const CallEvent &Call, CheckerContext &C) const;
60 const LocationContext *LCtx, const CallEvent *Call) const;
66 void handleReset(const CallEvent &Call, CheckerContext &C) const;
67 void handleRelease(const CallEvent &Call, CheckerContext &C) const;
68 void handleSwapMethod(const CallEvent &Call, CheckerContext &C) const;
69 void handleGet(const CallEvent &Call, CheckerContext &C) const;
70 bool handleAssignOp(const CallEvent &Call, CheckerContext &C) const;
71 bool handleMoveCtr(const CallEvent &Call, CheckerContext &C,
[all …]
H A DCastValueChecker.cpp34 class CastValueChecker : public Checker<check::DeadSymbols, eval::Call> {
38 std::function<void(const CastValueChecker *, const CallEvent &Call,
54 bool evalCall(const CallEvent &Call, CheckerContext &C) const;
59 // {{match-mode, {namespace, call}, argument-count}, {callback, kind}}
78 void evalCast(const CallEvent &Call, DefinedOrUnknownSVal DV,
80 void evalDynCast(const CallEvent &Call, DefinedOrUnknownSVal DV,
82 void evalCastOrNull(const CallEvent &Call, DefinedOrUnknownSVal DV,
84 void evalDynCastOrNull(const CallEvent &Call, DefinedOrUnknownSVal DV,
86 void evalCastAs(const CallEvent &Call, DefinedOrUnknownSVal DV,
88 void evalGetAs(const CallEvent &Call, DefinedOrUnknownSVal DV,
[all …]
H A DBlockInCriticalSectionChecker.cpp66 [[nodiscard]] bool matches(const CallEvent &Call, bool IsLock) const { in matches() argument
68 return LockFn.matches(Call); in matches()
70 return UnlockFn.matches(Call); in matches()
79 [[nodiscard]] const MemRegion *getRegion(const CallEvent &Call, bool) const { in getRegion() argument
80 return Call.getArgSVal(0).getAsRegion(); in getRegion()
89 [[nodiscard]] const MemRegion *getRegion(const CallEvent &Call, bool) const { in getRegion() argument
90 return cast<CXXMemberCall>(Call).getCXXThisVal().getAsRegion(); in getRegion()
99 void initIdentifierInfo(const CallEvent &Call) const { in initIdentifierInfo()
106 const auto &ASTCtx = Call.getState()->getStateManager().getContext(); in initIdentifierInfo()
111 template <typename T> bool matchesImpl(const CallEvent &Call) const { in matchesImpl()
[all …]
H A DStdVariantChecker.cpp35 getConstructorDeclarationForCall(const CallEvent &Call) { in getConstructorDeclarationForCall() argument
36 const auto *ConstructorCall = dyn_cast<CXXConstructorCall>(&Call); in getConstructorDeclarationForCall()
43 bool isCopyConstructorCall(const CallEvent &Call) { in isCopyConstructorCall() argument
45 getConstructorDeclarationForCall(Call)) in isCopyConstructorCall()
50 bool isCopyAssignmentCall(const CallEvent &Call) { in isCopyAssignmentCall() argument
51 const Decl *CopyAssignmentDecl = Call.getDecl(); in isCopyAssignmentCall()
59 bool isMoveConstructorCall(const CallEvent &Call) { in isMoveConstructorCall() argument
61 getConstructorDeclarationForCall(Call); in isMoveConstructorCall()
68 bool isMoveAssignmentCall(const CallEvent &Call) { in isMoveAssignmentCall() argument
69 const Decl *CopyAssignmentDecl = Call.getDecl(); in isMoveAssignmentCall()
[all …]
H A DPthreadLockChecker.cpp85 typedef void (PthreadLockChecker::*FnCheck)(const CallEvent &Call,
209 void InitAnyLock(const CallEvent &Call, CheckerContext &C,
211 void InitLockAux(const CallEvent &Call, CheckerContext &C,
216 void AcquirePthreadLock(const CallEvent &Call, CheckerContext &C,
218 void AcquireXNULock(const CallEvent &Call, CheckerContext &C,
220 void TryPthreadLock(const CallEvent &Call, CheckerContext &C,
222 void TryXNULock(const CallEvent &Call, CheckerContext &C,
224 void TryFuchsiaLock(const CallEvent &Call, CheckerContext &C,
226 void TryC11Lock(const CallEvent &Call, CheckerContext &C,
228 void AcquireLockAux(const CallEvent &Call, CheckerContext &C,
[all …]
H A DMIGChecker.cpp50 #define CALL(required_args, deallocated_arg, ...) \ macro
56 CALL(3, 1, "vm_deallocate"),
57 CALL(3, 1, "mach_vm_deallocate"),
58 CALL(2, 0, "mig_deallocate"),
59 CALL(2, 1, "mach_port_deallocate"),
60 CALL(1, 0, "device_deallocate"),
61 CALL(1, 0, "iokit_remove_connect_reference"),
62 CALL(1, 0, "iokit_remove_reference"),
63 CALL(1, 0, "iokit_release_port"),
64 CALL(1, 0, "ipc_port_release"),
[all …]
H A DSetgidSetuidOrderChecker.cpp46 void checkPostCall(const CallEvent &Call, CheckerContext &C) const;
51 void processSetuid(ProgramStateRef State, const CallEvent &Call,
53 void processSetgid(ProgramStateRef State, const CallEvent &Call,
55 void processOther(ProgramStateRef State, const CallEvent &Call,
58 /// the first argument of function called from \a Call.
60 const CallEvent &Call) const;
66 /// Store if there was a call to 'setuid(getuid())' or 'setgid(getgid())' not
68 /// If the value \c Setuid is stored and a 'setgid(getgid())' call is found we
72 /// Store the symbol value of the last 'setuid(getuid())' call. This is used to in REGISTER_TRAIT_WITH_PROGRAMSTATE()
74 /// (which is the failure branch of the call), and for identification of note in REGISTER_TRAIT_WITH_PROGRAMSTATE()
[all …]
H A DErrnoTesterChecker.cpp28 class ErrnoTesterChecker : public Checker<eval::Call> {
30 bool evalCall(const CallEvent &Call, CheckerContext &C) const;
35 static void evalSetErrno(CheckerContext &C, const CallEvent &Call);
38 static void evalGetErrno(CheckerContext &C, const CallEvent &Call);
44 static void evalSetErrnoIfError(CheckerContext &C, const CallEvent &Call);
49 const CallEvent &Call);
53 /// This is the case of a successful standard function call.
56 /// This is the case of a failed standard function call.
62 /// This is the case of a standard function call where the failure can only
65 /// the call (\c ErrnoChecker does not check for this rule).
[all …]
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock_output_test_golden.txt6 FILE:#: Mock function call matches EXPECT_CALL(foo_, Bar2(0, _))...
7 Function call: Bar2(0, 0)
16 FILE:#: Mock function call matches EXPECT_CALL(foo_, Bar3(0, _))...
17 Function call: Bar3(0, 0)
33 Unexpected mock function call - returning default value.
34 Function call: Bar2(1, 0)
48 Unexpected mock function call - returning directly.
49 Function call: Bar3(1, 0)
62 Function call: Bar2(0, 1)
71 Function call: Bar3(0, 1)
[all …]
/freebsd/sys/dev/xen/efi/
H A Dpvefi.c59 struct xenpf_efi_runtime_call *call = &op.u.efi_runtime_call; in get_time() local
66 tm->tm_year = call->u.get_time.time.year; in get_time()
67 tm->tm_mon = call->u.get_time.time.month; in get_time()
68 tm->tm_mday = call->u.get_time.time.day; in get_time()
69 tm->tm_hour = call->u.get_time.time.hour; in get_time()
70 tm->tm_min = call->u.get_time.time.min; in get_time()
71 tm->tm_sec = call->u.get_time.time.sec; in get_time()
72 tm->tm_nsec = call->u.get_time.time.ns; in get_time()
73 tm->tm_tz = call->u.get_time.time.tz; in get_time()
74 tm->tm_dst = call->u.get_time.time.daylight; in get_time()
[all …]
/freebsd/sys/crypto/aesni/
H A Daeskeys_amd64.S129 call _key_expansion_256a
131 call _key_expansion_256b
133 call _key_expansion_256a
135 call _key_expansion_256b
137 call _key_expansion_256a
139 call _key_expansion_256b
141 call _key_expansion_256a
143 call _key_expansion_256b
145 call _key_expansion_256a
147 call _key_expansion_256b
[all …]
H A Daeskeys_i386.S135 call _key_expansion_256a
138 call _key_expansion_256b
141 call _key_expansion_256a
144 call _key_expansion_256b
147 call _key_expansion_256a
150 call _key_expansion_256b
153 call _key_expansion_256a
156 call _key_expansion_256b
159 call _key_expansion_256a
162 call _key_expansion_256b
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DAbstractCallSite.h1 //===- AbstractCallSite.h - Abstract call sites -----------------*- C++ -*-===//
30 /// An abstract call site is a wrapper that allows to treat direct,
31 /// indirect, and callback calls the same. If an abstract call site
32 /// represents a direct or indirect call site it behaves like a stripped
33 /// down version of a normal call site object. The abstract call site can
34 /// also represent a callback call, thus the fact that the initially
36 /// In this case, the abstract call site hides the middle man, hence the
37 /// broker function. The result is a representation of the callback call,
38 /// inside the broker, but in the context of the original call to the broker.
40 /// There are up to three functions involved when we talk about callback call
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFPreserveStaticOffset.cpp131 if (auto *Call = dyn_cast<CallInst>(I)) in isIntrinsicCall() local
132 if (Function *Func = Call->getCalledFunction()) in isIntrinsicCall()
170 static void setParamElementType(CallInst *Call, unsigned ArgNo, Type *Type) { in setParamElementType() argument
171 LLVMContext &C = Call->getContext(); in setParamElementType()
172 Call->addParamAttr(ArgNo, Attribute::get(C, Attribute::ElementType, Type)); in setParamElementType()
175 static void setParamReadNone(CallInst *Call, unsigned ArgNo) { in setParamReadNone() argument
176 LLVMContext &C = Call->getContext(); in setParamReadNone()
177 Call->addParamAttr(ArgNo, Attribute::get(C, Attribute::ReadNone)); in setParamReadNone()
180 static void setParamReadOnly(CallInst *Call, unsigned ArgNo) { in setParamReadOnly() argument
181 LLVMContext &C = Call->getContext(); in setParamReadOnly()
[all …]
H A DBPFAbstractMemberAccess.cpp151 // The base call is not an input of any other preserve_*
164 void traceAICall(CallInst *Call, CallInfo &ParentInfo);
171 bool IsPreserveDIAccessIndexCall(const CallInst *Call, CallInfo &Cinfo);
182 Value *computeBaseAndAccessKey(CallInst *Call, CallInfo &CInfo,
184 MDNode *computeAccessKey(CallInst *Call, CallInfo &CInfo,
186 bool transformGEPChain(CallInst *Call, CallInfo &CInfo);
321 static Type *getBaseElementType(const CallInst *Call) { in getBaseElementType() argument
323 return Call->getParamElementType(0); in getBaseElementType()
332 /// Check whether a call is a preserve_*_access_index intrinsic call or not.
333 bool BPFAbstractMemberAccess::IsPreserveDIAccessIndexCall(const CallInst *Call, in IsPreserveDIAccessIndexCall() argument
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenCL.cpp138 bool SemaOpenCL::checkSubgroupExt(CallExpr *Call) { in checkSubgroupExt() argument
146 Diag(Call->getBeginLoc(), diag::err_opencl_requires_extension) in checkSubgroupExt()
147 << 1 << Call->getDirectCallee() in checkSubgroupExt()
364 static bool checkPipeArg(Sema &S, CallExpr *Call) { in checkPipeArg() argument
365 const Expr *Arg0 = Call->getArg(0); in checkPipeArg()
368 S.Diag(Call->getBeginLoc(), diag::err_opencl_builtin_pipe_first_arg) in checkPipeArg()
369 << Call->getDirectCallee() << Arg0->getSourceRange(); in checkPipeArg()
374 // Validates the access qualifier is compatible with the call. in checkPipeArg()
378 switch (Call->getDirectCallee()->getBuiltinID()) { in checkPipeArg()
414 static bool checkPipePacketType(Sema &S, CallExpr *Call, unsigned Idx) { in checkPipePacketType() argument
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpBuiltin.cpp136 const CallExpr *Call) { in interp__builtin_is_constant_evaluated() argument
166 const CallExpr *Call) { in interp__builtin_strcmp() argument
203 pushInteger(S, Result, Call->getType()); in interp__builtin_strcmp()
209 const CallExpr *Call) { in interp__builtin_strlen() argument
235 pushInteger(S, Len, Call->getType()); in interp__builtin_strlen()
367 const CallExpr *Call) { in interp__builtin_isnan() argument
370 pushInteger(S, Arg.isNan(), Call->getType()); in interp__builtin_isnan()
377 const CallExpr *Call) { in interp__builtin_issignaling() argument
380 pushInteger(S, Arg.isSignaling(), Call->getType()); in interp__builtin_issignaling()
386 bool CheckSign, const CallExpr *Call) { in interp__builtin_isinf() argument
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DCallPromotionUtils.h1 //===- CallPromotionUtils.h - Utilities for call promotion ------*- C++ -*-===//
9 // This file declares utilities useful for promoting indirect call sites to
10 // direct call sites.
27 /// Return true if the given indirect call site can be made to call \p Callee.
29 /// This function ensures that the number and type of the call site's arguments
32 /// is non-null and the indirect call cannot be promoted, the failure reason
37 /// Promote the given indirect call site to unconditionally call \p Callee.
39 /// This function promotes the given call site, returning the direct call or
40 /// invoke instruction. If the function type of the call site doesn't match that
47 /// Promote the given indirect call site to conditionally call \p Callee. The
[all …]
/freebsd/share/doc/psd/18.gprof/
H A Dpostp.me34 Having gathered the arcs of the call graph and timing information
37 routines that call it.
38 We build a dynamic call graph with arcs from caller to callee,
40 by topologically sorting the call graph.
42 call graph toward the roots, according to the order
51 after a single traversal of each arc in the call graph.
66 Since we are assuming each call to a routine takes the
83 This relation is easily available from the call graph.
86 the call graph has cycles that
89 components in the call graph,
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DCallGraph.h1 //===- CallGraph.h - Build a Module's call graph ----------------*- C++ -*-===//
10 /// This file provides interfaces used to build and manipulate a call graph,
13 /// Every function in a module is represented as a node in the call graph. The
17 /// A call graph may contain nodes where the function that they correspond to
25 /// call, for example being stored into a memory location will also have
30 /// Functions have a call edge to the external node iff:
31 /// 1. The function is external, reflecting the fact that they could call
33 /// 2. The function contains an indirect function call.
37 /// that an indirect call site can call onl
242 addCalledFunction(CallBase * Call,CallGraphNode * M) addCalledFunction() argument
[all...]

12345678910>>...238