Searched refs:flgs (Results 1 - 16 of 16) sorted by relevance

/macosx-10.10.1/file_cmds-242/pax/
H A Dpat_rep.h45 int flgs; /* print conversions? global in operation? */ member in struct:replace
H A Dsel_subs.h65 int flgs; /* option flags */ member in struct:time_rng
H A Dsel_subs.c381 pt->flgs = CMPMTME;
383 pt->flgs = 0;
388 pt->flgs |= CMPMTME;
392 pt->flgs |= CMPCTME;
417 pt->flgs |= HASLOW;
429 pt->flgs |= HASHIGH;
434 if (pt->flgs & HASLOW) {
476 switch (pt->flgs & CMPBOTH) {
482 if (((pt->flgs & HASLOW) &&
485 ((pt->flgs
[all...]
H A Dpat_rep.c171 rep->flgs = 0;
180 rep->flgs |= GLOB;
184 rep->flgs |= PRNT;
247 pt->flgs = 0;
276 if (pt->flgs & MTCH)
320 pt->flgs |= MTCH;
331 if (pt->flgs & DIR_MTCH)
376 pt->flgs = DIR_MTCH | MTCH;
447 if (pt->flgs & DIR_MTCH) {
950 } while (pt->flgs
[all...]
H A Dpax.h83 int flgs; /* processing/state flags */ member in struct:pattern
/macosx-10.10.1/xnu-2782.1.97/SETUP/config/
H A Dopenp.c60 static int flgs,mod,value; variable
67 value = open (fnam,flgs,mod);
81 flgs = flags;
/macosx-10.10.1/tcl-105/tcl_ext/xotcl/xotcl/generic/
H A DxotclDecls.h73 Tcl_Obj* name, Tcl_Obj* value, int flgs));
77 Tcl_Obj* name, int flgs));
86 Tcl_Obj* value, int flgs));
90 Tcl_Obj* name1, Tcl_Obj* name2, int flgs));
94 char* name1, char* name2, int flgs));
174 Tcl_Obj* (*xOTclOSetInstVar) _ANSI_ARGS_((struct XOTcl_Object* obj, Tcl_Interp* in, Tcl_Obj* name, Tcl_Obj* value, int flgs)); /* 15 */
175 Tcl_Obj* (*xOTclOGetInstVar) _ANSI_ARGS_((struct XOTcl_Object* obj, Tcl_Interp* in, Tcl_Obj* name, int flgs)); /* 16 */
178 Tcl_Obj* (*xOTclOSetInstVar2) _ANSI_ARGS_((struct XOTcl_Object* obj, Tcl_Interp* in, Tcl_Obj* name1, Tcl_Obj* name2, Tcl_Obj* value, int flgs)); /* 19 */
179 Tcl_Obj* (*xOTclOGetInstVar2) _ANSI_ARGS_((struct XOTcl_Object* obj, Tcl_Interp* in, Tcl_Obj* name1, Tcl_Obj* name2, int flgs)); /* 20 */
180 int (*xOTclUnsetInstVar2) _ANSI_ARGS_((struct XOTcl_Object* obj, Tcl_Interp* in, char* name1, char* name2, int flgs)); /* 2
[all...]
H A DxotclInt.h261 #define Tcl_ObjGetVar2(interp,name1,name2,flgs) \
263 ((name2==NULL) ? (char*)NULL : ObjStr(name2)), flgs)
H A Dxotcl.c1895 NSRequireVariableOnObj(Tcl_Interp *interp, XOTclObject *obj, char *name, int flgs) { argument
1900 varPtr = TclLookupVar(interp, name, 0, flgs, "obj vwait",
2214 int flgs = 0; local
2216 int flgs = TCL_LEAVE_ERR_MSG; local
2222 flgs |= TCL_NAMESPACE_ONLY;
2224 valueObject = Tcl_ObjGetVar2(interp, XOTclGlobalObjects[XOTE_AUTONAMES], name, flgs);
2236 valueObject, flgs);
2240 Tcl_UnsetVar2(interp, XOTclGlobalStrings[XOTE_AUTONAMES], ObjStr(name), flgs);
2247 name, XOTclGlobalObjects[XOTE_ONE], flgs);
5703 fprintf(stderr,"calling unknown for %s %s, flgs
8890 XOTclOSetInstVar(XOTcl_Object *obj, Tcl_Interp *interp, Tcl_Obj *name, Tcl_Obj *value, int flgs) argument
8896 XOTclOGetInstVar(XOTcl_Object *obj, Tcl_Interp *interp, Tcl_Obj *name, int flgs) argument
8901 XOTclUnsetInstVar(XOTcl_Object *obj, Tcl_Interp *interp, char *name, int flgs) argument
8940 XOTclOSetInstVar2(XOTcl_Object *obji, Tcl_Interp *interp, Tcl_Obj *name1, Tcl_Obj *name2, Tcl_Obj *value, int flgs) argument
8956 XOTclUnsetInstVar2(XOTcl_Object *obji, Tcl_Interp *interp, char *name1, char *name2, int flgs) argument
8980 int flgs = TCL_LEAVE_ERR_MSG | local
9706 int flgs = TCL_TRACE_WRITES|TCL_TRACE_UNSETS; local
12594 XOTclOGetInstVar2(XOTcl_Object *obj, Tcl_Interp *interp, Tcl_Obj *name1, Tcl_Obj *name2, int flgs) argument
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/sfio/
H A Dvthread.h196 #define vtopen(vt,flgs) ((Vthread_t*)0)
205 #define vtmtxopen(mtx,flgs) ((Vtmutex_t*)0)
/macosx-10.10.1/OpenSSL098-52/src/crypto/evp/
H A Devp.h468 #define M_EVP_MD_CTX_set_flags(ctx,flgs) ((ctx)->flags|=(flgs))
469 #define M_EVP_MD_CTX_clear_flags(ctx,flgs) ((ctx)->flags&=~(flgs))
470 #define M_EVP_MD_CTX_test_flags(ctx,flgs) ((ctx)->flags&(flgs))
475 #define M_EVP_CIPHER_CTX_set_flags(ctx,flgs) ((ctx)->flags|=(flgs))
/macosx-10.10.1/OpenSSL098-52/src/include/openssl/
H A Devp.h468 #define M_EVP_MD_CTX_set_flags(ctx,flgs) ((ctx)->flags|=(flgs))
469 #define M_EVP_MD_CTX_clear_flags(ctx,flgs) ((ctx)->flags&=~(flgs))
470 #define M_EVP_MD_CTX_test_flags(ctx,flgs) ((ctx)->flags&(flgs))
475 #define M_EVP_CIPHER_CTX_set_flags(ctx,flgs) ((ctx)->flags|=(flgs))
/macosx-10.10.1/ksh-23/ksh/src/cmd/ksh93/sh/
H A Dxec.c1024 int command=0, flgs=NV_ASSIGN; local
1144 flgs |= NV_ARRAY;
1146 flgs |= NV_IARRAY;
1149 flgs |= NV_UNJUST;
1171 flgs |= NV_COMVAR;
1173 flgs |= NV_STATIC;
1175 flgs |= NV_MOVE;
1177 flgs |= NV_NOREF;
1193 flgs |= NV_TYPE;
1198 flgs |
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/include/opcode/
H A Dm88k.h442 struct SIM_FLAGS flgs; member in struct:INSTRUCTAB
/macosx-10.10.1/zsh-61/zsh/Src/
H A Dhashtable.c939 int flgs[] = { local
947 if (f->node.flags & flgs[fl]) putchar(fopt[fl]);
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Dcoff-arm.c49 #define SET_APCS_FLAGS(abfd, flgs) \
53 coff_data (abfd)->flags |= (flgs) | F_APCS_SET; \

Completed in 300 milliseconds