Searched defs:symbol (Results 1 - 15 of 15) sorted by relevance

/osnet-11/usr/src/lib/krb5/ss/
H A Dutils.c72 char *symbol; local
75 asprintf(&symbol, "%s%05ld", name, gensym_n);
76 return(symbol);
/osnet-11/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DKernelSymbolRecord.java35 * {@code sym()} action used to lookup the symbol associated with a
52 new String[] {"symbol", "address"})
77 private String symbol; // set natively after creation; treat as final field in class:KernelSymbolRecord
91 * Creates a {@code KernelSymbolRecord} with the given symbol lookup
97 * @param addressValue symbol address
99 * looking up the symbol associated with the given kernel address
105 symbol = lookupValue;
113 if (symbol == null) {
114 throw new NullPointerException("symbol is null");
128 return symbol;
[all...]
H A DUserSymbolRecord.java35 * {@code usym()} action used to lookup the symbol associated with a
52 new String[] {"processID", "symbol", "address"})
79 private transient String symbol; field in class:UserSymbolRecord
92 * symbol lookup, and user address converted in probe context as a
100 * looking up the symbol associated with the given user address
101 * @param addressValue symbol address
110 symbol = lookupValue;
117 if (symbol == null) {
118 throw new NullPointerException("symbol is null");
123 * Gets the process ID associated with this record's symbol
[all...]
/osnet-11/usr/src/lib/libpp/common/
H A Dppcontrol.c156 * return symbol pointer for next token macro (re)definition
279 struct ppsymbol* symbol; member in union:__anon2350
396 else if (--pp.control == pp.in->control && pp.in->symbol)
431 pp.in->symbol = sym ? sym : pprefmac(pp.token, REF_CREATE);
940 else if (pp.hiding && (var.symbol = ppsymref(pp.symtab, pp.token)) && var.symbol->hidden)
2144 var.symbol = pprefmac(pp.token, REF_CREATE);
2145 if (mac = var.symbol->macro)
2147 if (var.symbol->flags & (SYM_ACTIVE|SYM_READONLY))
2150 error(2, "%s: macro is %s", var.symbol
[all...]
H A Dpplib.h147 struct ppsymbol* symbol; /* macro info */ member in struct:ppinstk
181 struct pphide /* hidden symbol info */
184 unsigned long flags; /* saved symbol flags if macro */
344 struct pphide* hidden; /* hidden symbol info */
573 cur->prev->symbol->flags &= ~SYM_DISABLED; \
584 cur->prev->symbol->flags &= ~SYM_DISABLED; \
586 if (!(cur->prev->symbol->flags & SYM_MULTILINE)) \
587 cur->prev->symbol->flags |= SYM_DISABLED; \
602 cur->symbol = p; \
615 cur->symbol
[all...]
H A Dpp.h123 #define SYM_NOTICED (1L<<12) /* symbol noticed in output */
129 #define SYM_UNUSED 24 /* first unused symbol flag bit */
131 #define PP_ASSERT 1 /* preassert symbol */
139 #define PP_DEFINE 9 /* predefine symbol */
189 #define PP_UNDEF 59 /* undef symbol after ppdefault */
376 struct ppsymbol /* pp symbol info */
378 HASH_HEADER; /* hash stuff and symbol name */
404 struct ppsymbol* symbol; /* last symbol if PP_COMPILE */ member in struct:ppglobals
/osnet-11/usr/src/lib/libparted/common/libparted/fs/reiserfs/
H A Dreiserfs.c673 static void *getsym(void *handle, const char *symbol) argument
678 entry = dlsym(handle, symbol);
682 _("Couldn't resolve symbol %s. "
684 symbol, error);
/osnet-11/usr/src/lib/libdtrace_jni/common/
H A Ddtj_consume.c1123 /* stand-alone symbol lookup action */
1373 /* Get symbol lookup */
1478 jobject symbol = NULL; /* return value */ local
1486 symbol = (*jenv)->NewObject(jenv, g_symbol_jc,
1496 symbol = (*jenv)->NewObject(jenv, g_usymbol_jc,
1507 return (symbol);
1613 dtj_attach_name(dtj_java_consumer_t *jc, jobject symbol, jstring s) argument
1617 if ((*jenv)->IsInstanceOf(jenv, symbol, g_symbol_jc)) {
1618 (*jenv)->CallVoidMethod(jenv, symbol, g_symbolset_name_jm, s);
1619 } else if ((*jenv)->IsInstanceOf(jenv, symbol, g_usymbol_j
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/
H A DLzmaDec.c152 /* First LZMA-symbol is always decoded.
197 unsigned symbol; local
206 symbol = 1;
207 do { GET_BIT(prob + symbol, symbol) } while (symbol < 0x100);
213 symbol = 1;
220 probLit = prob + offs + bit + symbol;
221 GET_BIT2(probLit, symbol, offs &= ~bit, offs &= bit)
223 while (symbol <
553 unsigned symbol = 1; local
561 unsigned symbol = 1; local
[all...]
H A DLzmaEnc.c598 static void RangeEnc_EncodeBit(CRangeEnc *p, CLzmaProb *prob, UInt32 symbol) argument
602 if (symbol == 0)
621 static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol) argument
623 symbol |= 0x100;
626 RangeEnc_EncodeBit(p, probs + (symbol >> 8), (symbol >> 7) & 1);
627 symbol <<= 1;
629 while (symbol < 0x10000);
632 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte) argument
635 symbol |
682 LitEnc_GetPrice(const CLzmaProb *probs, UInt32 symbol, UInt32 *ProbPrices) argument
695 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt32 *ProbPrices) argument
712 RcTree_Encode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
726 RcTree_ReverseEncode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
739 RcTree_GetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
751 RcTree_ReverseGetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
779 LenEnc_Encode(CLenEnc *p, CRangeEnc *rc, UInt32 symbol, UInt32 posState) argument
838 LenEnc_Encode2(CLenPriceEnc *p, CRangeEnc *rc, UInt32 symbol, UInt32 posState, Bool updatePrice, UInt32 *ProbPrices) argument
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/xzembed/
H A Dxz_dec_lzma2.c33 * Minimum number of usable input buffer to safely decode one LZMA symbol.
521 uint32_t symbol = 1; local
524 if (rc_bit(rc, &probs[symbol]))
525 symbol = (symbol << 1) + 1;
527 symbol <<= 1;
528 } while (symbol < limit);
530 return symbol;
537 uint32_t symbol = 1; local
541 if (rc_bit(rc, &probs[symbol])) {
583 uint32_t symbol; local
[all...]
/osnet-11/usr/src/lib/libproc/common/
H A DPsymtab.c575 * forcibly cache all of the symbol tables associated with all object files.
700 * By building the symbol table, we implicitly bring the PLT
720 * By building the symbol table, we implicitly bring the PLT
994 * Find or build the symbol table for the given mapping.
1182 * We're looking through the elf file for several items: the symbol tables
1414 * Prefer the weak or strong global symbol to the local symbol.
1424 * Prefer the symbol that doesn't begin with a '$' since compilers and
1425 * other symbol generators often use it as a prefix.
1446 * Prefer the symbol wit
2611 Plookup_by_name(struct ps_prochandle *P, const char *object, const char *symbol, GElf_Sym *symp) argument
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/unicode/
H A Dure.c158 * Structure to track the list of unique states for a symbol
240 ucs2_t symbol; member in struct:__anon1044
373 * Start symbol parse functions.
879 * The parse was not terminated by the character class close symbol
1011 * If the symbol type happens to be a character and is a high surrogate,
1044 * If the symbol constructed is anything other than one of the anchors,
1075 * Construct a symbol, but only keep unique symbols.
1082 _ure_symtab_t *sp, symbol; local
1085 * Build the next symbol so we can test to see if it is already in the
1086 * symbol tabl
[all...]
/osnet-11/usr/src/lib/libzfs/common/
H A Dlibzfs_diff.c1037 int symbol; local
1041 symbol = 'B';
1044 symbol = 'C';
1047 symbol = '/';
1050 symbol = '>';
1053 symbol = '|';
1056 symbol = '@';
1059 symbol = 'P';
1062 symbol = '=';
1065 symbol
1077 int symbol = get_what(isb); local
[all...]
/osnet-11/usr/src/lib/libsqlite/tool/
H A Dlemon.c120 struct symbol { struct
121 char *name; /* Name of the symbol */
122 int index; /* Index number for this symbol */
128 struct symbol *fallback; /* fallback token in case this token doesn't parse */
136 char *firstset; /* First-set for all rules of this symbol */
138 char *destructor; /* Code which executes whenever this symbol is
151 struct symbol *lhs; /* Left-hand side of the rule */
155 struct symbol **rhs; /* The RHS symbols */
156 char **rhsalias; /* An alias for each RHS symbol (NULL if none) */
159 struct symbol *precsy
[all...]

Completed in 91 milliseconds