Searched refs:argTypes (Results 1 - 25 of 48) sorted by relevance

12

/macosx-10.10/ntp-92/libopts/
H A Dusage.c39 static arg_types_t argTypes; variable
583 printOptPreamble(pOpts, pOD, &argTypes);
592 fprintf(option_usage_fp, argTypes.pzBrk, pOD->pzText,
611 fprintf( option_usage_fp, argTypes.pzBrk, zAuto, pOptTitle );
613 printOneUsage(pOpts, pOD, &argTypes);
620 printExtendedUsage( pOpts, pOD, &argTypes );
702 argTypes.pzStr = zGnuStrArg;
703 argTypes.pzReq = zOneSpace;
704 argTypes.pzNum = zGnuNumArg;
705 argTypes
[all...]
/macosx-10.10/ntp-92/sntp/libopts/
H A Dusage.c39 static arg_types_t argTypes; variable
583 printOptPreamble(pOpts, pOD, &argTypes);
592 fprintf(option_usage_fp, argTypes.pzBrk, pOD->pzText,
611 fprintf( option_usage_fp, argTypes.pzBrk, zAuto, pOptTitle );
613 printOneUsage(pOpts, pOD, &argTypes);
620 printExtendedUsage( pOpts, pOD, &argTypes );
702 argTypes.pzStr = zGnuStrArg;
703 argTypes.pzReq = zOneSpace;
704 argTypes.pzNum = zGnuNumArg;
705 argTypes
[all...]
/macosx-10.10/libffi-18.1/tests/testsuite/libffi.call/
H A Dhuge_struct.c233 ffi_type* argTypes[51]; local
273 argTypes[0] = argTypes[12] = argTypes[24] = argTypes[36] = argTypes[48] = &ffi_type_uint8;
275 argTypes[1] = argTypes[13] = argTypes[25] = argTypes[3
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/libffi-src/tests/testsuite/libffi.call/
H A Dhuge_struct.c233 ffi_type* argTypes[51]; local
273 argTypes[0] = argTypes[12] = argTypes[24] = argTypes[36] = argTypes[48] = &ffi_type_uint8;
275 argTypes[1] = argTypes[13] = argTypes[25] = argTypes[3
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libffi-src/tests/testsuite/libffi.call/
H A Dhuge_struct.c233 ffi_type* argTypes[51]; local
273 argTypes[0] = argTypes[12] = argTypes[24] = argTypes[36] = argTypes[48] = &ffi_type_uint8;
275 argTypes[1] = argTypes[13] = argTypes[25] = argTypes[3
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/libffi-src/tests/testsuite/libffi.call/
H A Dhuge_struct.c233 ffi_type* argTypes[51]; local
273 argTypes[0] = argTypes[12] = argTypes[24] = argTypes[36] = argTypes[48] = &ffi_type_uint8;
275 argTypes[1] = argTypes[13] = argTypes[25] = argTypes[3
[all...]
/macosx-10.10/llvmCore-3425.0.34/examples/ExceptionDemo/
H A DExceptionDemo.cpp1108 ArgTypes argTypes; local
1109 argTypes.push_back(builder.getInt32Ty());
1116 argTypes,
1718 ArgTypes argTypes; local
1725 argTypes.clear();
1726 argTypes.push_back(builder.getInt32Ty());
1727 argTypes.push_back(builder.getInt8PtrTy());
1733 argTypes,
1744 argTypes.clear();
1745 argTypes
[all...]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dmsgfmt.cpp235 argTypes(NULL),
257 argTypes(NULL),
280 argTypes(NULL),
302 argTypes(NULL),
326 uprv_free(argTypes);
336 * Allocate argTypes[] to at least the given capacity and return
337 * TRUE if successful. If not, leave argTypes[] unchanged.
339 * If argTypes is NULL, allocate it. If it is not NULL, enlarge it
355 uprv_realloc(argTypes, sizeof(*argTypes) * capacit
[all...]
H A Dumsg.cpp406 const Formattable::Type* argTypes = local
420 switch(argTypes[i]) {
/macosx-10.10/ICU-531.30/icuSources/i18n/unicode/
H A Dmsgfmt.h896 Formattable::Type* argTypes; member in class:MessageFormat
901 * TRUE if there are different argTypes for the same argument.
903 * where the pattern argTypes determine how the va_arg list is read.
1053 return argTypes;
/macosx-10.10/llvmCore-3425.0.34/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp930 std::vector<Type *> argTypes; local
935 argTypes.push_back(I->getType());
937 assert(argTypes.size() == Ins.size() &&
942 Type *Ty = argTypes[i];
1019 const PointerType *elemPtrType = dyn_cast<PointerType>(argTypes[i]);
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclBasic.c540 builtinFuncPtr->numArgs, builtinFuncPtr->argTypes,
2878 Tcl_CreateMathFunc(interp, name, numArgs, argTypes, proc, clientData)
2884 Tcl_ValueType *argTypes; /* Array of types acceptable for
2933 mathFuncPtr->argTypes[i] = argTypes[i];
2977 Tcl_ValueType *argTypes;
2994 *argTypesPtr = argTypes =
2997 argTypes[i] = mathFuncPtr->argTypes[i];
2948 Tcl_ValueType *argTypes; local
H A DtclExecute.c5996 if (mathFuncPtr->argTypes[k] == TCL_DOUBLE) {
5999 } else if (mathFuncPtr->argTypes[k] == TCL_WIDE_INT) {
6009 if (mathFuncPtr->argTypes[k] == TCL_DOUBLE) {
6012 } else if (mathFuncPtr->argTypes[k] == TCL_INT) {
6021 if (mathFuncPtr->argTypes[k] == TCL_INT) {
6024 } else if (mathFuncPtr->argTypes[k] == TCL_WIDE_INT) {
H A DtclCompile.h664 Tcl_ValueType argTypes[MAX_MATH_ARGS]; member in struct:__anon12804
/macosx-10.10/tcl-105/tcl/tcl/generic/
H A DtclBasic.c45 Tcl_ValueType *argTypes; /* Types of the args */ member in struct:OldMathFuncData
3108 Tcl_ValueType *argTypes, /* Array of types acceptable for each
3121 data->argTypes = (Tcl_ValueType *)
3123 memcpy(data->argTypes, argTypes, numArgs * sizeof(Tcl_ValueType));
3211 args[k].type = dataPtr->argTypes[k];
3301 ckfree((void *) dataPtr->argTypes);
3380 *argTypesPtr = dataPtr->argTypes;
3074 Tcl_CreateMathFunc( Tcl_Interp *interp, const char *name, int numArgs, Tcl_ValueType *argTypes, Tcl_MathProc *proc, ClientData clientData) argument
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v8.1/
H A DtclStubs.c.orig975 Tcl_CreateMathFunc(interp, name, numArgs, argTypes, proc, clientData)
979 Tcl_ValueType * argTypes;
983 (tclStubsPtr->tcl_CreateMathFunc)(interp, name, numArgs, argTypes, proc, clientData);
H A DtclStubs.c975 Tcl_CreateMathFunc(interp, name, numArgs, argTypes, proc, clientData)
979 Tcl_ValueType * argTypes;
983 (tclStubsPtr->tcl_CreateMathFunc)(interp, name, numArgs, argTypes, proc, clientData);
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v8.1b2/
H A DtclStubs.c.orig975 Tcl_CreateMathFunc(interp, name, numArgs, argTypes, proc, clientData)
979 Tcl_ValueType * argTypes;
983 (tclStubsPtr->tcl_CreateMathFunc)(interp, name, numArgs, argTypes, proc, clientData);
H A DtclStubs.c975 Tcl_CreateMathFunc(interp, name, numArgs, argTypes, proc, clientData)
979 Tcl_ValueType * argTypes;
983 (tclStubsPtr->tcl_CreateMathFunc)(interp, name, numArgs, argTypes, proc, clientData);
H A DtclDecls.h320 Tcl_ValueType * argTypes,
1181 void (*tcl_CreateMathFunc) _ANSI_ARGS_((Tcl_Interp * interp, char * name, int numArgs, Tcl_ValueType * argTypes, Tcl_MathProc * proc, ClientData clientData)); /* 95 */
1836 #define Tcl_CreateMathFunc(interp, name, numArgs, argTypes, proc, clientData) \
1837 (tclStubsPtr->tcl_CreateMathFunc)(interp, name, numArgs, argTypes, proc, clientData) /* 95 */
H A DtclDecls.h.orig320 Tcl_ValueType * argTypes,
1173 void (*tcl_CreateMathFunc) _ANSI_ARGS_((Tcl_Interp * interp, char * name, int numArgs, Tcl_ValueType * argTypes, Tcl_MathProc * proc, ClientData clientData)); /* 95 */
1824 #define Tcl_CreateMathFunc(interp, name, numArgs, argTypes, proc, clientData) \
1825 (tclStubsPtr->tcl_CreateMathFunc)(interp, name, numArgs, argTypes, proc, clientData) /* 95 */
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v8.1b3/
H A DtclStubs.c.orig975 Tcl_CreateMathFunc(interp, name, numArgs, argTypes, proc, clientData)
979 Tcl_ValueType * argTypes;
983 (tclStubsPtr->tcl_CreateMathFunc)(interp, name, numArgs, argTypes, proc, clientData);
H A DtclStubs.c975 Tcl_CreateMathFunc(interp, name, numArgs, argTypes, proc, clientData)
979 Tcl_ValueType * argTypes;
983 (tclStubsPtr->tcl_CreateMathFunc)(interp, name, numArgs, argTypes, proc, clientData);
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v7.6/
H A Dtcl.h833 char *name, int numArgs, Tcl_ValueType *argTypes,
/macosx-10.10/tcl-105/tcl_ext/trf/trf/patches/v7.6p2/
H A Dtcl.h833 char *name, int numArgs, Tcl_ValueType *argTypes,

Completed in 616 milliseconds

12