Searched defs:symbol (Results 26 - 27 of 27) sorted by relevance

12

/illumos-gate/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...]
/illumos-gate/usr/src/common/lzma/
H A DLzmaEnc.c572 static void RangeEnc_EncodeBit(CRangeEnc *p, CLzmaProb *prob, UInt32 symbol) argument
576 if (symbol == 0)
595 static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol) argument
597 symbol |= 0x100;
600 RangeEnc_EncodeBit(p, probs + (symbol >> 8), (symbol >> 7) & 1);
601 symbol <<= 1;
603 while (symbol < 0x10000);
606 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte) argument
609 symbol |
656 LitEnc_GetPrice(const CLzmaProb *probs, UInt32 symbol, UInt32 *ProbPrices) argument
669 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt32 *ProbPrices) argument
686 RcTree_Encode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
700 RcTree_ReverseEncode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
713 RcTree_GetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
725 RcTree_ReverseGetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
753 LenEnc_Encode(CLenEnc *p, CRangeEnc *rc, UInt32 symbol, UInt32 posState) argument
812 LenEnc_Encode2(CLenPriceEnc *p, CRangeEnc *rc, UInt32 symbol, UInt32 posState, Bool updatePrice, UInt32 *ProbPrices) argument
[all...]

Completed in 106 milliseconds

12