/illumos-gate/usr/src/tools/smatch/src/validation/backend/ |
H A D | pointer-add.c | 1 char *caddv(char *p, int o) { char *r = p; r = r + o; return r; } in caddv() 2 void *vaddv(void *p, int o) { void *r = p; r = r + o; return r; } in vaddv() 3 int *iaddv(int *p, int o) { int *r = p; r = r + o; return r; } in iaddv() 5 char *caddc(char *p, int o) { char *r = p; r = r + 3; return r; } in caddc() 6 void *vaddc(void *p, int o) { void *r = p; r = r + 3; return r; } in vaddc() 7 int *iaddc(int *p, int o) { int *r = p; r = r + 3; return r; } in iaddc() 9 char *cincv(char *p, int o) { char *r = p; r += o; return r; } in cincv() 10 void *vincv(void *p, int o) { void *r = p; r += o; return r; } in vincv() 11 int *iincv(int *p, int o) { int *r = p; r += o; return r; } in iincv() 13 char *cincc(char *p, int o) { char *r = p; r += 3; return r; } in cincc() [all …]
|
/illumos-gate/usr/src/uts/common/fs/zfs/lua/ |
H A D | lobject.h | 112 #define val_(o) ((o)->value_) argument 113 #define num_(o) (val_(o).n) argument 117 #define rttype(o) ((o)->tt_) argument 123 #define ttype(o) (rttype(o) & 0x3F) argument 126 #define ttypenv(o) (novariant(rttype(o))) argument 130 #define checktag(o,t) (rttype(o) == (t)) argument 131 #define checktype(o,t) (ttypenv(o) == (t)) argument 132 #define ttisnumber(o) checktag((o), LUA_TNUMBER) argument 133 #define ttisnil(o) checktag((o), LUA_TNIL) argument 134 #define ttisboolean(o) checktag((o), LUA_TBOOLEAN) argument [all …]
|
H A D | lapi.c | 40 #define isvalid(o) ((o) != luaO_nilobject) argument 46 #define isstackindex(i, o) (isvalid(o) && !ispseudo(i)) argument 48 #define api_checkvalidindex(L, o) api_check(L, isvalid(o), "invalid index") argument 50 #define api_checkstackindex(L, i, o) \ argument 57 TValue *o = ci->func + idx; in index2addr() local 249 StkId o = index2addr(L, idx); in lua_type() local 261 StkId o = index2addr(L, idx); in lua_iscfunction() local 268 const TValue *o = index2addr(L, idx); in lua_isnumber() local 280 const TValue *o = index2addr(L, idx); in lua_isuserdata() local 336 const TValue *o = index2addr(L, idx); in lua_tonumberx() local [all …]
|
H A D | lstate.h | 197 #define gch(o) (&(o)->gch) argument 200 #define rawgco2ts(o) \ argument 202 #define gco2ts(o) (&rawgco2ts(o)->tsv) argument 203 #define rawgco2u(o) check_exp((o)->gch.tt == LUA_TUSERDATA, &((o)->u)) argument 204 #define gco2u(o) (&rawgco2u(o)->uv) argument 205 #define gco2lcl(o) check_exp((o)->gch.tt == LUA_TLCL, &((o)->cl.l)) argument 206 #define gco2ccl(o) check_exp((o)->gch.tt == LUA_TCCL, &((o)->cl.c)) argument 207 #define gco2cl(o) \ argument 209 #define gco2t(o) check_exp((o)->gch.tt == LUA_TTABLE, &((o)->h)) argument 210 #define gco2p(o) check_exp((o)->gch.tt == LUA_TPROTO, &((o)->p)) argument [all …]
|
H A D | lgc.c | 75 #define markvalue(g,o) { checkconsistency(o); \ argument 121 static int iscleared (global_State *g, const TValue *o) { in iscleared() 135 void luaC_barrier_ (lua_State *L, GCObject *o, GCObject *v) { in luaC_barrier_() 155 void luaC_barrierback_ (lua_State *L, GCObject *o) { in luaC_barrierback_() 191 GCObject *o = obj2gco(uv); in luaC_checkupvalcolor() local 216 GCObject *o = obj2gco(raw + offset); in luaC_newobj() local 243 static void reallymarkobject (global_State *g, GCObject *o) { in reallymarkobject() 312 GCObject *o; in markbeingfnz() local 497 StkId o = th->stack; in traversestack() local 523 GCObject *o = g->gray; in propagatemark() local [all …]
|
H A D | lvm.h | 16 #define tostring(L,o) (ttisstring(o) || (luaV_tostring(L, o))) argument 18 #define tonumber(o,n) (ttisnumber(o) || (((o) = luaV_tonumber(o,n)) != NULL)) argument
|
/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/ |
H A D | softObject.h | 395 #define OBJ_PUB(o) \ argument 399 #define OBJ_PUB_RSA_MOD(o) \ argument 403 #define OBJ_PUB_RSA_PUBEXPO(o) \ argument 407 #define OBJ_PUB_RSA_MOD_BITS(o) \ argument 417 #define OBJ_PUB_DSA_PRIME(o) \ argument 421 #define OBJ_PUB_DSA_SUBPRIME(o) \ argument 425 #define OBJ_PUB_DSA_BASE(o) \ argument 429 #define OBJ_PUB_DSA_VALUE(o) \ argument 439 #define OBJ_PUB_DH_PRIME(o) \ argument 443 #define OBJ_PUB_DH_BASE(o) \ argument [all …]
|
/illumos-gate/usr/src/tools/smatch/src/validation/ |
H A D | ptr-inherit.c | 11 const int o; in test_const() local 17 volatile int o; in test_volatile() local 23 int __noderef o; in test_noderef() local 29 int __bitwise o; in test_bitwise() local 35 int __user o; in test_user() local 41 int __nocast o; in test_nocast() local 49 static int o; in test_static() local 56 static __thread int o; in test_tls() local
|
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/ecore/ |
H A D | ecore_sp_verbs.c | 269 struct ecore_exe_queue_obj *o, in ecore_exe_queue_init() 306 static INLINE int ecore_exe_queue_length(struct ecore_exe_queue_obj *o) in ecore_exe_queue_length() 337 struct ecore_exe_queue_obj *o, in ecore_exe_queue_add() 376 struct ecore_exe_queue_obj *o) in __ecore_exe_queue_reset_pending() 400 struct ecore_exe_queue_obj *o, in ecore_exe_queue_step() 466 static INLINE BOOL ecore_exe_queue_empty(struct ecore_exe_queue_obj *o) in ecore_exe_queue_empty() 485 static BOOL ecore_raw_check_pending(struct ecore_raw_obj *o) in ecore_raw_check_pending() 499 static void ecore_raw_clear_pending(struct ecore_raw_obj *o) in ecore_raw_clear_pending() 506 static void ecore_raw_set_pending(struct ecore_raw_obj *o) in ecore_raw_set_pending() 581 static BOOL ecore_get_cam_offset_mac(struct ecore_vlan_mac_obj *o, int *offset) in ecore_get_cam_offset_mac() [all …]
|
/illumos-gate/usr/src/uts/intel/sys/acpi/ |
H A D | actbinfo.h | 346 #define ACPI_FLAG_OFFSET(d,f,o) (UINT16) (ACPI_OFFSET (d,f) + o) argument 350 #define ACPI_BGRT_FLAG_OFFSET(f,o) ACPI_FLAG_OFFSET (ACPI_TABLE_BGRT,f,o) argument 351 #define ACPI_DRTM_FLAG_OFFSET(f,o) ACPI_FLAG_OFFSET (ACPI_TABLE_DRTM,f,o) argument 352 #define ACPI_DRTM1a_FLAG_OFFSET(f,o) ACPI_FLAG_OFFSET (ACPI_DRTM_RESOURCE,f,o) argument 353 #define ACPI_FADT_FLAG_OFFSET(f,o) ACPI_FLAG_OFFSET (ACPI_TABLE_FADT,f,o) argument 354 #define ACPI_FACS_FLAG_OFFSET(f,o) ACPI_FLAG_OFFSET (ACPI_TABLE_FACS,f,o) argument 355 #define ACPI_HPET_FLAG_OFFSET(f,o) ACPI_FLAG_OFFSET (ACPI_TABLE_HPET,f,o) argument 356 #define ACPI_PPTT0_FLAG_OFFSET(f,o) ACPI_FLAG_OFFSET (ACPI_PPTT_PROCESSOR,f,o) argument 357 #define ACPI_PPTT1_FLAG_OFFSET(f,o) ACPI_FLAG_OFFSET (ACPI_PPTT_CACHE,f,o) argument 358 #define ACPI_SRAT0_FLAG_OFFSET(f,o) ACPI_FLAG_OFFSET (ACPI_SRAT_CPU_AFFINITY,f,o) argument [all …]
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | pci_cap.h | 78 #define PCI_CAP_GET8(h, i, b, o) ((uint8_t) \ argument 80 #define PCI_CAP_GET16(h, i, b, o) ((uint16_t) \ argument 82 #define PCI_CAP_GET32(h, i, b, o) ((uint32_t) \ argument 85 #define PCI_CAP_PUT8(h, i, b, o, d) \ argument 87 #define PCI_CAP_PUT16(h, i, b, o, d) \ argument 89 #define PCI_CAP_PUT32(h, i, b, o, d) \ argument 92 #define PCI_XCAP_GET8(h, i, b, o) ((uint8_t) \ argument 94 #define PCI_XCAP_GET16(h, i, b, o) ((uint16_t) \ argument 96 #define PCI_XCAP_GET32(h, i, b, o) ((uint32_t) \ argument 99 #define PCI_XCAP_PUT8(h, i, b, o, d) \ argument [all …]
|
/illumos-gate/usr/src/lib/pkcs11/pkcs11_kernel/common/ |
H A D | kernelObject.h | 256 #define OBJ_SEC(o) \ argument 258 #define OBJ_SEC_VALUE(o) \ argument 260 #define OBJ_SEC_VALUE_LEN(o) \ argument 266 #define OBJ_PUB(o) \ argument 270 #define OBJ_PUB_RSA_MOD(o) \ argument 274 #define OBJ_PUB_RSA_PUBEXPO(o) \ argument 278 #define OBJ_PUB_RSA_MOD_BITS(o) \ argument 289 #define OBJ_PUB_DSA_PRIME(o) \ argument 293 #define OBJ_PUB_DSA_SUBPRIME(o) \ argument 297 #define OBJ_PUB_DSA_BASE(o) \ argument [all …]
|
/illumos-gate/usr/src/uts/sun4u/sys/ |
H A D | isadma.h | 64 #define IN_CHILD_SPACE(o) ((o) > LO_BOUND && (o) < HI_BOUND) argument 65 #define IN_16BIT_SPACE(o) ((((o) >= DMA_0ADR) && (o) <= DMA_3WCNT) || \ argument 67 #define IS_SEQREG(o) (((o) == DMAC1_CLFF) || ((o) == DMAC2_CLFF)) argument 68 #define HDL_TO_SEQREG_ADDR(h, o) \ argument 73 #define BEGIN_ISADMA(o, v) ((o) == DMAC1_ALLMASK && (v)) argument 74 #define END_ISADMA(o, v) ((o) == DMAC1_ALLMASK && (v) == 0) argument
|
/illumos-gate/usr/src/contrib/ast/src/lib/libast/include/ |
H A D | ccode.h | 66 #define CCOP(i,o) ((i)==(o)?0:(((o)<<8)|(i))) argument 72 #define CCMAP(i,o) ((i)==(o)?(unsigned char*)0:_ccmap(i,o)) argument 77 #define ccmap(i,o) CCMAP(i,o) argument 82 #define CCMAPC(c,i,o) ((i)==(o)?(c):CCMAP(i,o)[c]) argument 83 #define CCMAPM(t,f,n,i,o) ((i)==(o)?memcpy(t,f,n):_ccmapcpy(CCMAP(i,o),t,f,n)) argument 84 #define CCMAPS(s,n,i,o) ((i)==(o)?(void*)(s):_ccmapstr(CCMAP(i,o),s,n)) argument 86 #define ccmapc(c,i,o) CCMAPC(c,i,o) argument 87 #define ccmapm(t,f,n,i,o) CCMAPM(t,f,n,i,o) argument 88 #define ccmaps(s,n,i,o) CCMAPS(s,n,i,o) argument
|
H A D | aso.h | 107 #define asocaschar(p,o,n) asocas8(p,o,n) argument 117 #define asocasshort(p,o,n) asocas16(p,o,n) argument 128 #define asocasint(p,o,n) asocas32((uint32_t volatile*)p,o,n) argument 135 #define asocaslong(p,o,n) asocas32((uint32_t volatile*)p,o,n) argument 142 #define asocassize(p,o,n) asocas32((uint32_t volatile*)p,o,n) argument 156 #define asocasint(p,o,n) asocas64((uint64_t volatile*)p,o,n) argument 163 #define asocaslong(p,o,n) asocas64((uint64_t volatile*)p,o,n) argument 170 #define asocassize(p,o,n) asocas64((uint64_t volatile*)p,o,n) argument
|
H A D | cdt.h | 305 #define _DTLNK(dc,o) ((Dtlink_t*)((char*)(o) + (dc)->link) ) /* get link from obj */ argument 310 #define _DTK(dc,o) ((char*)(o) + (dc)->key) /* get key from object */ argument 311 #define _DTKEY(dc,o) (Void_t*)((dc)->size >= 0 ? _DTK(dc,o) : *((char**)_DTK(dc,o)) ) argument 329 #define dtnext(d,o) (*(_DT(d)->searchf))((d),(Void_t*)(o),DT_NEXT) argument 330 #define dtatleast(d,o) (*(_DT(d)->searchf))((d),(Void_t*)(o),DT_ATLEAST) argument 332 #define dtprev(d,o) (*(_DT(d)->searchf))((d),(Void_t*)(o),DT_PREV) argument 333 #define dtatmost(d,o) (*(_DT(d)->searchf))((d),(Void_t*)(o),DT_ATMOST) argument 334 #define dtsearch(d,o) (*(_DT(d)->searchf))((d),(Void_t*)(o),DT_SEARCH) argument 335 #define dtmatch(d,o) (*(_DT(d)->searchf))((d),(Void_t*)(o),DT_MATCH) argument 336 #define dtinsert(d,o) (*(_DT(d)->searchf))((d),(Void_t*)(o),DT_INSERT) argument [all …]
|
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/ |
H A D | Expression.java | 165 public abstract boolean contradicts(Expression o); in contradicts() 306 public boolean equals(Object o) in equals() 345 public boolean contradicts(Expression o) in contradicts() 477 public boolean equals(Object o) in equals() 514 public boolean contradicts(Expression o) in contradicts() 610 public boolean equals(Object o) in equals() 644 public boolean contradicts(Expression o) in contradicts()
|
H A D | Statistic.java | 88 public AggregateStatistic add(AggregateStatistic o); in add() 95 public AggregateStatistic subtract(AggregateStatistic o); in subtract() 265 public AggregateStatistic add(AggregateStatistic o) in add() 275 public AggregateStatistic subtract(AggregateStatistic o) in subtract() 353 public AggregateStatistic add(AggregateStatistic o) in add() 363 public AggregateStatistic subtract(AggregateStatistic o) in subtract() 440 public AggregateStatistic add(AggregateStatistic o) in add() 450 public AggregateStatistic subtract(AggregateStatistic o) in subtract()
|
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/ |
H A D | charset.c | 1023 c_to_hh( Byte *o, Byte c ) in c_to_hh() 1038 c_to_cc( Byte *o, Couple *cc, Byte c ) in c_to_cc() 1060 Byte *s, *oo, *o; in ldap_t61_to_8859() local 1210 cc_to_t61( Byte *o, Byte *s ) in cc_to_t61() 1598 Byte *s, *oo, *o, *aux; in ldap_8859_to_t61() local 1708 char *o = s; local 1729 Byte *o, *oo; local 1782 Byte *o, *oo; local
|
/illumos-gate/usr/src/cmd/logadm/ |
H A D | opts.c | 216 opts_set(struct opts *opts, const char *o, const char *optarg) in opts_set() 261 opts_optarg(struct opts *opts, const char *o) in opts_optarg() 270 opts_optarg_int(struct opts *opts, const char *o) in opts_optarg_int() 320 opts_parse_ctime(const char *o, const char *optarg) in opts_parse_ctime() 340 opts_parse_atopi(const char *o, const char *optarg) in opts_parse_atopi() 358 opts_parse_bytes(const char *o, const char *optarg) in opts_parse_bytes() 393 opts_parse_seconds(const char *o, const char *optarg) in opts_parse_seconds()
|
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | ServiceLocationAttribute.java | 182 Object o = evaluate(value); in ServiceLocationAttribute() local 220 Object o = null; in evaluate() local 283 Object o = ret.elementAt(i); in getValues() local 508 Object o = e.nextElement(); in externalize() local 910 Object o = attrVals.elementAt(0); in mergeDuplicateAttributes() local 963 public boolean equals(Object o) { in equals() 1042 Object o = values.elementAt(i); in toString() local
|
/illumos-gate/usr/src/contrib/ast/src/lib/libast/comp/ |
H A D | tsearch.c | 113 reg Tree_t* o; local 149 reg Tree_t* o; local 175 reg Tree_t* o; local 234 reg Tree_t* o; local
|
/illumos-gate/usr/src/uts/common/fs/smbsrv/ |
H A D | smb_cmn_oplock.c | 237 smb_ofile_t *o; in RecomputeOplockState() local 559 smb_ofile_t *o; in smb_oplock_req_excl() local 1065 smb_ofile_t *o; in smb_oplock_req_shared() local 1742 smb_ofile_t *o; in smb_oplock_ack_break() local 2367 smb_ofile_t *o; in smb_oplock_break_CLOSE() local 2736 smb_ofile_t *o = NULL; in smb_oplock_break_cmn() local
|
/illumos-gate/usr/src/uts/common/io/iprb/ |
H A D | iprb.h | 278 #define PUTCB8(cb, o, v) PUTDMA8(cb, o, v) argument 279 #define PUTCB16(cb, o, v) PUTDMA16(cb, o, v) argument 280 #define PUTCB32(cb, o, v) PUTDMA32(cb, o, v) argument 281 #define PUTCBEA(cb, o, enet) \ argument 284 #define GETCB8(cb, o) GETDMA8(cb, o) argument 285 #define GETCB16(cb, o) GETDMA16(cb, o) argument 286 #define GETCB32(cb, o) GETDMA32(cb, o) argument 287 #define SYNCCB(cb, o, s, dir) SYNCDMA(cb, o, s, dir) argument 312 #define GETRFD16(r, o) GETDMA16(r, o) argument 313 #define PUTRFD16(r, o, v) PUTDMA16(r, o, v) argument [all …]
|
/illumos-gate/usr/src/lib/libc/port/regex/ |
H A D | regexec.c | 102 #define INIT(o, n) ((o) = (unsigned long)1 << (n)) argument 103 #define INC(o) ((o) <<= 1) argument 104 #define ISSTATEIN(v, o) (((v) & (o)) != 0) argument 159 #define INIT(o, n) ((o) = (n)) argument 160 #define INC(o) ((o)++) argument 161 #define ISSTATEIN(v, o) ((v)[o]) argument
|