Searched refs:argcount (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_printf.c45 int argcount,
55 assert(argcount > 0);
59 for (i = 1; i < argcount; i++) {
70 return LLVMBuildCall(builder, func_printf, args, argcount, "");
180 int argcount; local
183 argcount = lp_get_printf_arg_count(fmt);
184 assert(Elements(params) >= argcount + 1);
187 for (i = 1; i <= argcount; i++) {
193 return lp_build_print_args(gallivm, argcount + 1, params);
44 lp_build_print_args(struct gallivm_state* gallivm, int argcount, LLVMValueRef* args) argument
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_printf.c45 int argcount,
55 assert(argcount > 0);
59 for (i = 1; i < argcount; i++) {
70 return LLVMBuildCall(builder, func_printf, args, argcount, "");
180 int argcount; local
183 argcount = lp_get_printf_arg_count(fmt);
184 assert(Elements(params) >= argcount + 1);
187 for (i = 1; i <= argcount; i++) {
193 return lp_build_print_args(gallivm, argcount + 1, params);
44 lp_build_print_args(struct gallivm_state* gallivm, int argcount, LLVMValueRef* args) argument
/external/libvterm/src/
H A Dpen.c67 static int lookup_colour(int palette, const long args[], int argcount, VTermColor *col, int *index) argument
71 if(argcount < 3)
72 return argcount;
84 lookup_colour_palette(argcount ? CSI_ARG_OR(args[0], -1) : -1, col);
86 return argcount ? 1 : 0;
194 void vterm_state_setpen(VTermState *state, const long args[], int argcount) argument
201 while(argi < argcount) {
297 if(argcount - argi < 1)
299 argi += 1 + lookup_colour(CSI_ARG(args[argi+1]), args+argi+2, argcount-argi-2, &state->pen.fg, &state->fg_index);
318 if(argcount
356 vterm_state_getpen(VTermState *state, long args[], int argcount) argument
[all...]
H A Dparser.c36 int argcount = 1; // Always at least 1 arg local
40 argcount++;
44 if(argcount > CSI_ARGS_MAX)
45 argcount = CSI_ARGS_MAX;
48 for(argi = 0; argi < argcount; argi++)
52 for(i = leaderlen; i < arglen && argi < argcount; i++) {
92 //for(argi = 0; argi < argcount; argi++) {
100 if((*vt->parser_callbacks->csi)(leaderlen ? leader : NULL, csi_args, argcount, intermedlen ? intermed : NULL, command, vt->cbdata))
H A Dvterm_internal.h176 void vterm_state_setpen(VTermState *state, const long args[], int argcount);
177 int vterm_state_getpen(VTermState *state, long args[], int argcount);
H A Dstate.c815 static int on_csi(const char *leader, const long args[], int argcount, const char *intermed, char command, void *user) argument
924 col = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? 1 : CSI_ARG(args[1]);
1116 col = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? 1 : CSI_ARG(args[1]);
1182 vterm_state_setpen(state, args, argcount);
1263 state->scrollregion_bottom = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? -1 : CSI_ARG(args[1]);
1271 state->scrollregion_right = argcount < 2 || CSI_ARG_IS_MISSING(args[1]) ? -1 : CSI_ARG(args[1]);
/external/lldb/test/pexpect-2.4/examples/
H A Drippy.py378 argcount = func.func_code.co_argcount
379 required_args = dict([(k,args.get(k)) for k in func.func_code.co_varnames[:argcount]])
/external/libvterm/include/
H A Dvterm.h164 int (*csi)(const char *leader, const long args[], int argcount, const char *intermed, char command, void *user);
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dmethods.cpp373 {# 2. Initialize argcount to be min(maxarg, n). #}
375 {# 3. Remove from S all entries whose type list is not of length argcount. #}
H A Dinterface.cpp530 {# 2. Initialize argcount to be min(maxarg, n). #}
532 {# 3. Remove from S all entries whose type list is not of length argcount. #}
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DNodes.py2966 argcount = len(self.args)
2967 if argcount == 0 or (
2968 argcount == 1 and (self.args[0].is_self_arg or

Completed in 196 milliseconds