Searched refs:arg_size (Results 1 - 25 of 41) sorted by relevance

12

/macosx-10.9.5/sudo-72/src/
H A Dtoke_util.c57 static int arg_size = 0; variable
166 arg_len = arg_size = 0;
202 if (new_len >= arg_size) {
204 while (new_len >= (arg_size += COMMANDARGINC))
208 (char *) realloc(yylval.command.args, arg_size) :
209 (char *) malloc(arg_size);
222 if (strlcpy(p, s, arg_size - (p - yylval.command.args)) != len) {
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dttymodes.c356 int arg_size; local
363 arg_size = 4;
366 arg_size = 1;
408 n_bytes += arg_size; \
413 n_bytes += arg_size; \
/macosx-10.9.5/objc4-551.1/runtime/
H A Dmessage.h281 OBJC_EXPORT id objc_msgSendv(id self, SEL op, size_t arg_size, marg_list arg_frame) OBJC2_UNAVAILABLE;
282 OBJC_EXPORT void objc_msgSendv_stret(void *stretAddr, id self, SEL op, size_t arg_size, marg_list arg_frame) OBJC2_UNAVAILABLE;
288 OBJC_EXPORT double objc_msgSendv_fpret(id self, SEL op, unsigned arg_size, marg_list arg_frame) OBJC2_UNAVAILABLE;
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DAutoUpgrade.cpp77 if (Name.startswith("ctlz.") && F->arg_size() == 1) {
83 if (Name.startswith("cttz.") && F->arg_size() == 1) {
100 (Name.startswith("x86.xop.vpcom") && F->arg_size() == 2)) {
114 if (Name.startswith("x86.xop.vfrcz.ss") && F->arg_size() == 2) {
120 if (Name.startswith("x86.xop.vfrcz.sd") && F->arg_size() == 2) {
/macosx-10.9.5/llvmCore-3425.0.33/utils/TableGen/
H A DSetTheory.cpp38 if (Expr->arg_size() < 2)
53 if (Expr->arg_size() != 2)
71 if (Expr->arg_size() != 2)
164 if (Expr->arg_size() > 4)
167 else if (Expr->arg_size() == 4) {
/macosx-10.9.5/ruby-104/ruby/
H A Dvm_insnhelper.c1150 th->mark_stack_len = argc + iseq->arg_size;
1281 VALUE *sp = argv + iseq->arg_size;
1286 for (i = 0; i < iseq->local_size - iseq->arg_size; i++) {
1320 for (i=0; i < iseq->arg_size; i++) {
1325 for (i = 0; i < iseq->local_size - iseq->arg_size; i++) {
2236 const int arg_size = iseq->arg_size; local
2237 if (arg_size < argc) {
2242 th->mark_stack_len = argc = arg_size;
2267 th->mark_stack_len = iseq->arg_size;
2342 const int arg_size = iseq->arg_size; local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-diff/
H A DDifferenceEngine.cpp236 if (L.arg_size() != R.arg_size()) {
240 for (unsigned I = 0, E = L.arg_size(); I != E; ++I)
464 if (L->arg_size() != R->arg_size())
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DCodeMetrics.cpp151 NumInsts += CS.arg_size();
H A DInlineCost.cpp647 Cost += CS.arg_size() * InlineConstants::InstrCost;
664 Cost += CS.arg_size() * InlineConstants::InstrCost;
821 for (unsigned I = 0, E = CS.arg_size(); I != E; ++I) {
/macosx-10.9.5/llvmCore-3425.0.33/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp389 if (CalleeF->arg_size() != Args.size())
424 if (F->arg_size() != Args.size()) {
/macosx-10.9.5/llvmCore-3425.0.33/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp397 if (CalleeF->arg_size() != Args.size())
432 if (F->arg_size() != Args.size()) {
/macosx-10.9.5/llvmCore-3425.0.33/lib/DebugInfo/
H A DDWARFDebugLine.cpp247 uint32_t arg_size = len - (*offset_ptr - ext_offset); local
308 (*offset_ptr) += arg_size;
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/
H A DFunction.h390 size_t arg_size() const;
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DCallSite.h146 unsigned arg_size() const { return unsigned(arg_end() - arg_begin()); }
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/IPO/
H A DIPConstantPropagation.cpp86 ArgumentConstants.resize(F.arg_size());
H A DMergeFunctions.cpp491 assert(F1->arg_size() == F2->arg_size() &&
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Instrumentation/
H A DProfilingUtils.cpp68 switch (MainFn->arg_size()) {
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dkern_sysctl.c1872 size_t arg_size; local
1895 arg_size = buflen;
1955 if ((u_int)arg_size > p->p_argslen)
1956 arg_size = round_page(p->p_argslen);
1958 arg_addr = p->user_stack - arg_size;
1989 ret = kmem_alloc(kernel_map, &copy_start, round_page(arg_size));
1995 copy_end = round_page(copy_start + arg_size);
1998 (vm_map_size_t)arg_size, FALSE, &tmp) != KERN_SUCCESS) {
2001 round_page(arg_size));
2015 round_page(arg_size));
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp498 if (CalleeF->arg_size() != Args.size())
677 if (F->arg_size() != Args.size()) {
/macosx-10.9.5/llvmCore-3425.0.33/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp602 if (CalleeF->arg_size() != Args.size())
781 if (F->arg_size() != Args.size()) {
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Utils/
H A DCloneFunction.cpp91 if (NewFunc->arg_size() == OldFunc->arg_size())
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/X86/
H A DX86FastISel.cpp1611 unsigned arg_size = CS.arg_size(); local
1612 Args.reserve(arg_size);
1613 ArgVals.reserve(arg_size);
1614 ArgVTs.reserve(arg_size);
1615 ArgFlags.reserve(arg_size);
/macosx-10.9.5/llvmCore-3425.0.33/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp890 const unsigned NumArgs = SF.Caller.arg_size();
1292 ECStack.back().Caller.arg_size() == ArgVals.size()) &&
1312 assert((ArgVals.size() == F->arg_size() ||
1313 (ArgVals.size() > F->arg_size() && F->getFunctionType()->isVarArg()))&&
H A DExternalFunctions.cpp186 const unsigned NumArgs = F->arg_size();
/macosx-10.9.5/llvmCore-3425.0.33/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp698 if (CalleeF->arg_size() != Args.size())
929 if (F->arg_size() != Args.size()) {

Completed in 501 milliseconds

12