Home
last modified time | relevance | path

Searched refs:p (Results 1 – 25 of 3316) sorted by relevance

12345678910>>...133

/titanic_52/usr/src/cmd/mandoc/
H A Dterm_ps.c39 #define PNT2AFM(p, x) \ argument
40 (size_t)((double)(x) * (1000.0 / (double)(p)->ps->scale))
43 #define AFM2PNT(p, x) \ argument
44 ((double)(x) / (1000.0 / (double)(p)->ps->scale))
512 struct termp *p; in pdf_alloc() local
514 if (NULL != (p = pspdf_alloc(mchars, outopts))) in pdf_alloc()
515 p->type = TERMTYPE_PDF; in pdf_alloc()
517 return(p); in pdf_alloc()
523 struct termp *p; in ps_alloc() local
525 if (NULL != (p in ps_alloc()
534 struct termp *p; pspdf_alloc() local
636 ps_setwidth(struct termp * p,int iop,size_t width) ps_setwidth() argument
655 struct termp *p; pspdf_free() local
669 ps_printf(struct termp * p,const char * fmt,...) ps_printf() argument
706 ps_putchar(struct termp * p,char c) ps_putchar() argument
726 pdf_obj(struct termp * p,size_t obj) pdf_obj() argument
742 ps_closepage(struct termp * p) ps_closepage() argument
795 ps_end(struct termp * p) ps_end() argument
859 ps_begin(struct termp * p) ps_begin() argument
943 ps_pletter(struct termp * p,int c) ps_pletter() argument
1024 ps_pclose(struct termp * p) ps_pclose() argument
1045 ps_fclose(struct termp * p) ps_fclose() argument
1074 ps_letter(struct termp * p,int arg) ps_letter() argument
1201 ps_advance(struct termp * p,size_t len) ps_advance() argument
1216 ps_endline(struct termp * p) ps_endline() argument
1255 ps_setfont(struct termp * p,enum termfont f) ps_setfont() argument
1278 ps_width(const struct termp * p,int c) ps_width() argument
1290 ps_hspan(const struct termp * p,const struct roffsu * su) ps_hspan() argument
1345 ps_growbuf(struct termp * p,size_t sz) ps_growbuf() argument
[all...]
H A Dterm.c35 static void adjbuf(struct termp *p, size_t);
42 term_free(struct termp *p) in term_free() argument
45 free(p->buf); in term_free()
46 free(p->fontq); in term_free()
47 free(p); in term_free()
51 term_begin(struct termp *p, term_margin head, in term_begin() argument
55 p->headf = head; in term_begin()
56 p->footf = foot; in term_begin()
57 p->argf = arg; in term_begin()
58 (*p in term_begin()
62 term_end(struct termp * p) term_end() argument
92 term_flushln(struct termp * p) term_flushln() argument
306 term_newln(struct termp * p) term_newln() argument
321 term_vspace(struct termp * p) term_vspace() argument
334 term_fontlast(struct termp * p) term_fontlast() argument
345 term_fontrepl(struct termp * p,enum termfont f) term_fontrepl() argument
354 term_fontpush(struct termp * p,enum termfont f) term_fontpush() argument
368 term_fontpopq(struct termp * p,int i) term_fontpopq() argument
378 term_fontpop(struct termp * p) term_fontpop() argument
391 term_word(struct termp * p,const char * word) term_word() argument
525 adjbuf(struct termp * p,size_t sz) adjbuf() argument
537 bufferc(struct termp * p,char c) bufferc() argument
552 encode1(struct termp * p,int c) encode1() argument
581 encode(struct termp * p,const char * word,size_t sz) encode() argument
619 term_setwidth(struct termp * p,const char * wstr) term_setwidth() argument
649 term_len(const struct termp * p,size_t sz) term_len() argument
656 cond_width(const struct termp * p,int c,int * skip) cond_width() argument
667 term_strlen(const struct termp * p,const char * cp) term_strlen() argument
791 term_vspan(const struct termp * p,const struct roffsu * su) term_vspan() argument
835 term_hspan(const struct termp * p,const struct roffsu * su) term_hspan() argument
[all...]
H A Dmdoc_term.c43 #define DECL_ARGS struct termp *p, \
257 struct termp *p; in terminal_mdoc() local
259 p = (struct termp *)arg; in terminal_mdoc()
261 p->overstep = 0; in terminal_mdoc()
262 p->rmargin = p->maxrmargin = p->defrmargin; in terminal_mdoc()
263 p->tabwidth = term_len(p, 5); in terminal_mdoc()
268 if (p in terminal_mdoc()
409 print_mdoc_foot(struct termp * p,const void * arg) print_mdoc_foot() argument
461 print_mdoc_head(struct termp * p,const void * arg) print_mdoc_head() argument
533 a2width(const struct termp * p,const char * v) a2width() argument
550 print_bvspace(struct termp * p,const struct mdoc_node * bl,const struct mdoc_node * n) print_bvspace() argument
1269 synopsis_pre(struct termp * p,const struct mdoc_node * n) synopsis_pre() argument
[all...]
H A Dman_term.c48 #define DECL_ARGS struct termp *p, \
140 struct termp *p; in terminal_man() local
145 p = (struct termp *)arg; in terminal_man()
147 p->overstep = 0; in terminal_man()
148 p->rmargin = p->maxrmargin = p->defrmargin; in terminal_man()
149 p->tabwidth = term_len(p, 5); in terminal_man()
156 mt.lmargin[mt.lmargincur] = term_len(p, in terminal_man()
193 print_bvspace(struct termp * p,const struct man_node * n,int pardist) print_bvspace() argument
1013 print_man_foot(struct termp * p,const void * arg) print_man_foot() argument
1085 print_man_head(struct termp * p,const void * arg) print_man_head() argument
[all...]
/titanic_52/usr/src/lib/libsqlite/src/
H A Dvdbeaux.c40 Vdbe *p; in sqliteVdbeCreate() local
41 p = sqliteMalloc( sizeof(Vdbe) ); in sqliteVdbeCreate()
42 if( p==0 ) return 0; in sqliteVdbeCreate()
43 p->db = db; in sqliteVdbeCreate()
45 db->pVdbe->pPrev = p; in sqliteVdbeCreate()
47 p->pNext = db->pVdbe; in sqliteVdbeCreate()
48 p->pPrev = 0; in sqliteVdbeCreate()
49 db->pVdbe = p; in sqliteVdbeCreate()
50 p->magic = VDBE_MAGIC_INIT; in sqliteVdbeCreate()
51 return p; in sqliteVdbeCreate()
57 sqliteVdbeTrace(Vdbe * p,FILE * trace) sqliteVdbeTrace() argument
77 sqliteVdbeAddOp(Vdbe * p,int op,int p1,int p2) sqliteVdbeAddOp() argument
114 sqliteVdbeOp3(Vdbe * p,int op,int p1,int p2,const char * zP3,int p3type) sqliteVdbeOp3() argument
123 sqliteVdbeCode(Vdbe * p,...) sqliteVdbeCode() argument
152 sqliteVdbeMakeLabel(Vdbe * p) sqliteVdbeMakeLabel() argument
179 sqliteVdbeResolveLabel(Vdbe * p,int x) sqliteVdbeResolveLabel() argument
195 sqliteVdbeCurrentAddr(Vdbe * p) sqliteVdbeCurrentAddr() argument
204 sqliteVdbeAddOpList(Vdbe * p,int nOp,VdbeOpList const * aOp) sqliteVdbeAddOpList() argument
248 sqliteVdbeChangeP1(Vdbe * p,int addr,int val) sqliteVdbeChangeP1() argument
259 sqliteVdbeChangeP2(Vdbe * p,int addr,int val) sqliteVdbeChangeP2() argument
284 sqliteVdbeChangeP3(Vdbe * p,int addr,const char * zP3,int n) sqliteVdbeChangeP3() argument
318 sqliteVdbeDequoteP3(Vdbe * p,int addr) sqliteVdbeDequoteP3() argument
341 sqliteVdbeCompressSpace(Vdbe * p,int addr) sqliteVdbeCompressSpace() argument
375 sqliteVdbeFindOp(Vdbe * p,int op,int p2) sqliteVdbeFindOp() argument
387 sqliteVdbeGetOp(Vdbe * p,int addr) sqliteVdbeGetOp() argument
414 sqlite_set_result_string(sqlite_func * p,const char * zResult,int n) sqlite_set_result_string() argument
443 sqlite_set_result_int(sqlite_func * p,int iResult) sqlite_set_result_int() argument
451 sqlite_set_result_double(sqlite_func * p,double rResult) sqlite_set_result_double() argument
459 sqlite_set_result_error(sqlite_func * p,const char * zMsg,int n) sqlite_set_result_error() argument
469 sqlite_user_data(sqlite_func * p) sqlite_user_data() argument
483 sqlite_aggregate_context(sqlite_func * p,int nByte) sqlite_aggregate_context() argument
504 sqlite_aggregate_count(sqlite_func * p) sqlite_aggregate_count() argument
537 sqliteVdbeList(Vdbe * p) sqliteVdbeList() argument
593 sqliteVdbeMakeReady(Vdbe * p,int nVar,int isExplain) sqliteVdbeMakeReady() argument
662 sqliteVdbeSorterReset(Vdbe * p) sqliteVdbeSorterReset() argument
683 HashElem *p; sqliteVdbeAggReset() local
721 sqliteVdbeKeylistFree(Keylist * p) sqliteVdbeKeylistFree() argument
747 closeAllCursors(Vdbe * p) closeAllCursors() argument
764 Cleanup(Vdbe * p) Cleanup() argument
837 sqliteVdbeReset(Vdbe * p,char ** pzErrMsg) sqliteVdbeReset() argument
923 sqliteVdbeFinalize(Vdbe * p,char ** pzErrMsg) sqliteVdbeFinalize() argument
952 Vdbe *p = (Vdbe*)pVm; sqlite_bind() local
985 sqliteVdbeDelete(Vdbe * p) sqliteVdbeDelete() argument
1050 sqliteVdbeCursorMoveto(Cursor * p) sqliteVdbeCursorMoveto() argument
[all...]
/titanic_52/usr/src/cmd/nscd/
H A Dnscd_initf.c32 _nss_initf_passwd(nss_db_params_t *p) in _nss_initf_passwd() argument
34 p->name = NSS_DBNAM_PASSWD; in _nss_initf_passwd()
35 p->default_config = NSS_DEFCONF_PASSWD; in _nss_initf_passwd()
39 _nss_initf_hosts(nss_db_params_t *p) in _nss_initf_hosts() argument
41 p->name = NSS_DBNAM_HOSTS; in _nss_initf_hosts()
42 p->default_config = NSS_DEFCONF_HOSTS; in _nss_initf_hosts()
46 _nss_initf_group(nss_db_params_t *p) in _nss_initf_group() argument
48 p->name = NSS_DBNAM_GROUP; in _nss_initf_group()
49 p->default_config = NSS_DEFCONF_GROUP; in _nss_initf_group()
53 _nss_initf_ipnodes(nss_db_params_t *p) in _nss_initf_ipnodes() argument
60 _nss_initf_net(nss_db_params_t * p) _nss_initf_net() argument
67 _nss_initf_proto(nss_db_params_t * p) _nss_initf_proto() argument
74 _nss_initf_rpc(p) _nss_initf_rpc() argument
82 _nss_initf_ethers(nss_db_params_t * p) _nss_initf_ethers() argument
89 _nss_initf_netmasks(nss_db_params_t * p) _nss_initf_netmasks() argument
96 _nss_initf_bootparams(nss_db_params_t * p) _nss_initf_bootparams() argument
103 _nss_initf_publickey(nss_db_params_t * p) _nss_initf_publickey() argument
110 _nss_initf_netgroup(nss_db_params_t * p) _nss_initf_netgroup() argument
117 _nss_initf_services(nss_db_params_t * p) _nss_initf_services() argument
124 _nss_initf_printers(nss_db_params_t * p) _nss_initf_printers() argument
131 _nss_initf_authattr(nss_db_params_t * p) _nss_initf_authattr() argument
138 _nss_initf_profattr(nss_db_params_t * p) _nss_initf_profattr() argument
145 _nss_initf_execattr(nss_db_params_t * p) _nss_initf_execattr() argument
153 _nss_initf_userattr(nss_db_params_t * p) _nss_initf_userattr() argument
161 _nss_initf_project(nss_db_params_t * p) _nss_initf_project() argument
168 _nss_initf_auuser(nss_db_params_t * p) _nss_initf_auuser() argument
176 _nss_initf_shadow(nss_db_params_t * p) _nss_initf_shadow() argument
184 _nss_initf_passwd_compat(nss_db_params_t * p) _nss_initf_passwd_compat() argument
192 _nss_initf_group_compat(nss_db_params_t * p) _nss_initf_group_compat() argument
200 _nss_initf_tsol_rh(nss_db_params_t * p) _nss_initf_tsol_rh() argument
207 _nss_initf_tsol_tp(nss_db_params_t * p) _nss_initf_tsol_tp() argument
[all...]
/titanic_52/usr/src/common/lzma/
H A DLzFind.c22 static void LzInWindow_Free(CMatchFinder *p, ISzAlloc *alloc) in LzInWindow_Free() argument
24 if (!p->directInput) in LzInWindow_Free()
26 alloc->Free(alloc, p->bufferBase, 0); in LzInWindow_Free()
27 p->bufferBase = 0; in LzInWindow_Free()
33 static int LzInWindow_Create(CMatchFinder *p, UInt32 keepSizeReserv, ISzAlloc *alloc) in LzInWindow_Create() argument
35 UInt32 blockSize = p->keepSizeBefore + p->keepSizeAfter + keepSizeReserv; in LzInWindow_Create()
36 if (p->directInput) in LzInWindow_Create()
38 p->blockSize = blockSize; in LzInWindow_Create()
41 if (p in LzInWindow_Create()
50 MatchFinder_GetPointerToCurrentPos(CMatchFinder * p) MatchFinder_GetPointerToCurrentPos() argument
51 MatchFinder_GetIndexByte(CMatchFinder * p,Int32 index) MatchFinder_GetIndexByte() argument
53 MatchFinder_GetNumAvailableBytes(CMatchFinder * p) MatchFinder_GetNumAvailableBytes() argument
55 MatchFinder_ReduceOffsets(CMatchFinder * p,UInt32 subValue) MatchFinder_ReduceOffsets() argument
62 MatchFinder_ReadBlock(CMatchFinder * p) MatchFinder_ReadBlock() argument
86 MatchFinder_MoveBlock(CMatchFinder * p) MatchFinder_MoveBlock() argument
94 MatchFinder_NeedMove(CMatchFinder * p) MatchFinder_NeedMove() argument
100 MatchFinder_ReadIfRequired(CMatchFinder * p) MatchFinder_ReadIfRequired() argument
108 MatchFinder_CheckAndMoveAndRead(CMatchFinder * p) MatchFinder_CheckAndMoveAndRead() argument
115 MatchFinder_SetDefaultSettings(CMatchFinder * p) MatchFinder_SetDefaultSettings() argument
127 MatchFinder_Construct(CMatchFinder * p) MatchFinder_Construct() argument
145 MatchFinder_FreeThisClassMemory(CMatchFinder * p,ISzAlloc * alloc) MatchFinder_FreeThisClassMemory() argument
151 MatchFinder_Free(CMatchFinder * p,ISzAlloc * alloc) MatchFinder_Free() argument
165 MatchFinder_Create(CMatchFinder * p,UInt32 historySize,UInt32 keepAddBufferBefore,UInt32 matchMaxLen,UInt32 keepAddBufferAfter,ISzAlloc * alloc) MatchFinder_Create() argument
241 MatchFinder_SetLimits(CMatchFinder * p) MatchFinder_SetLimits() argument
266 MatchFinder_Init(CMatchFinder * p) MatchFinder_Init() argument
280 MatchFinder_GetSubValue(CMatchFinder * p) MatchFinder_GetSubValue() argument
299 MatchFinder_Normalize(CMatchFinder * p) MatchFinder_Normalize() argument
306 MatchFinder_CheckLimits(CMatchFinder * p) MatchFinder_CheckLimits() argument
460 MatchFinder_MovePos(CMatchFinder * p) MatchFinder_MovePos() argument
470 MF_PARAMS(p) global() argument
479 Bt2_MatchFinder_GetMatches(CMatchFinder * p,UInt32 * distances) Bt2_MatchFinder_GetMatches() argument
490 Bt3Zip_MatchFinder_GetMatches(CMatchFinder * p,UInt32 * distances) Bt3Zip_MatchFinder_GetMatches() argument
501 Bt3_MatchFinder_GetMatches(CMatchFinder * p,UInt32 * distances) Bt3_MatchFinder_GetMatches() argument
534 Bt4_MatchFinder_GetMatches(CMatchFinder * p,UInt32 * distances) Bt4_MatchFinder_GetMatches() argument
581 Hc4_MatchFinder_GetMatches(CMatchFinder * p,UInt32 * distances) Hc4_MatchFinder_GetMatches() argument
630 Hc3Zip_MatchFinder_GetMatches(CMatchFinder * p,UInt32 * distances) Hc3Zip_MatchFinder_GetMatches() argument
642 Bt2_MatchFinder_Skip(CMatchFinder * p,UInt32 num) Bt2_MatchFinder_Skip() argument
655 Bt3Zip_MatchFinder_Skip(CMatchFinder * p,UInt32 num) Bt3Zip_MatchFinder_Skip() argument
668 Bt3_MatchFinder_Skip(CMatchFinder * p,UInt32 num) Bt3_MatchFinder_Skip() argument
683 Bt4_MatchFinder_Skip(CMatchFinder * p,UInt32 num) Bt4_MatchFinder_Skip() argument
699 Hc4_MatchFinder_Skip(CMatchFinder * p,UInt32 num) Hc4_MatchFinder_Skip() argument
716 Hc3Zip_MatchFinder_Skip(CMatchFinder * p,UInt32 num) Hc3Zip_MatchFinder_Skip() argument
730 MatchFinder_CreateVTable(CMatchFinder * p,IMatchFinder * vTable) MatchFinder_CreateVTable() argument
[all...]
H A DLzmaEnc.c50 void LzmaEncProps_Init(CLzmaEncProps *p) in LzmaEncProps_Init() argument
52 p->level = 5; in LzmaEncProps_Init()
53 p->dictSize = p->mc = 0; in LzmaEncProps_Init()
54 p->lc = p->lp = p->pb = p->algo = p->fb = p in LzmaEncProps_Init()
58 LzmaEncProps_Normalize(CLzmaEncProps * p) LzmaEncProps_Normalize() argument
214 CLenEnc p; global() member
244 CSeqInStreamBuf *p = (CSeqInStreamBuf *)pp; MyRead() local
361 CLzmaEnc *p = (CLzmaEnc *)pp; LzmaEnc_SaveState() local
388 const CSaveState *p = &dest->saveState; LzmaEnc_RestoreState() local
413 CLzmaEnc *p = (CLzmaEnc *)pp; LzmaEnc_SetProps() local
476 RangeEnc_Construct(CRangeEnc * p) RangeEnc_Construct() argument
482 RangeEnc_GetProcessed(p) global() argument
485 RangeEnc_Alloc(CRangeEnc * p,ISzAlloc * alloc) RangeEnc_Alloc() argument
497 RangeEnc_Free(CRangeEnc * p,ISzAlloc * alloc) RangeEnc_Free() argument
503 RangeEnc_Init(CRangeEnc * p) RangeEnc_Init() argument
517 RangeEnc_FlushStream(CRangeEnc * p) RangeEnc_FlushStream() argument
529 RangeEnc_ShiftLow(CRangeEnc * p) RangeEnc_ShiftLow() argument
550 RangeEnc_FlushData(CRangeEnc * p) RangeEnc_FlushData() argument
557 RangeEnc_EncodeDirectBits(CRangeEnc * p,UInt32 value,int numBits) RangeEnc_EncodeDirectBits() argument
572 RangeEnc_EncodeBit(CRangeEnc * p,CLzmaProb * prob,UInt32 symbol) RangeEnc_EncodeBit() argument
595 LitEnc_Encode(CRangeEnc * p,CLzmaProb * probs,UInt32 symbol) LitEnc_Encode() argument
606 LitEnc_EncodeMatched(CRangeEnc * p,CLzmaProb * probs,UInt32 symbol,UInt32 matchByte) LitEnc_EncodeMatched() argument
741 LenEnc_Init(CLenEnc * p) LenEnc_Init() argument
753 LenEnc_Encode(CLenEnc * p,CRangeEnc * rc,UInt32 symbol,UInt32 posState) LenEnc_Encode() argument
776 LenEnc_SetPrices(CLenEnc * p,UInt32 posState,UInt32 numSymbols,UInt32 * prices,UInt32 * ProbPrices) LenEnc_SetPrices() argument
799 LenPriceEnc_UpdateTable(CLenPriceEnc * p,UInt32 posState,UInt32 * ProbPrices) LenPriceEnc_UpdateTable() argument
805 LenPriceEnc_UpdateTables(CLenPriceEnc * p,UInt32 numPosStates,UInt32 * ProbPrices) LenPriceEnc_UpdateTables() argument
812 LenEnc_Encode2(CLenPriceEnc * p,CRangeEnc * rc,UInt32 symbol,UInt32 posState,Bool updatePrice,UInt32 * ProbPrices) LenEnc_Encode2() argument
823 MovePos(CLzmaEnc * p,UInt32 num) MovePos() argument
836 ReadMatchDistances(CLzmaEnc * p,UInt32 * numDistancePairsRes) ReadMatchDistances() argument
872 MakeAsChar(p) global() argument
873 MakeAsShortRep(p) global() argument
874 IsShortRep(p) global() argument
876 GetRepLen1Price(CLzmaEnc * p,UInt32 state,UInt32 posState) GetRepLen1Price() argument
883 GetPureRepPrice(CLzmaEnc * p,UInt32 repIndex,UInt32 state,UInt32 posState) GetPureRepPrice() argument
905 GetRepPrice(CLzmaEnc * p,UInt32 repIndex,UInt32 len,UInt32 state,UInt32 posState) GetRepPrice() argument
911 Backward(CLzmaEnc * p,UInt32 * backRes,UInt32 cur) Backward() argument
949 GetOptimum(CLzmaEnc * p,UInt32 position,UInt32 * backRes) GetOptimum() argument
1509 GetOptimumFast(CLzmaEnc * p,UInt32 * backRes) GetOptimumFast() argument
1617 WriteEndMarker(CLzmaEnc * p,UInt32 posState) WriteEndMarker() argument
1630 CheckErrors(CLzmaEnc * p) CheckErrors() argument
1643 Flush(CLzmaEnc * p,UInt32 nowPos) Flush() argument
1654 FillAlignPrices(CLzmaEnc * p) FillAlignPrices() argument
1662 FillDistancesPrices(CLzmaEnc * p) FillDistancesPrices() argument
1696 LzmaEnc_Construct(CLzmaEnc * p) LzmaEnc_Construct() argument
1722 void *p; LzmaEnc_Create() local
1729 LzmaEnc_FreeLits(CLzmaEnc * p,ISzAlloc * alloc) LzmaEnc_FreeLits() argument
1737 LzmaEnc_Destruct(CLzmaEnc * p,ISzAlloc * alloc,ISzAlloc * allocBig) LzmaEnc_Destruct() argument
1747 LzmaEnc_Destroy(CLzmaEncHandle p,ISzAlloc * alloc,ISzAlloc * allocBig) LzmaEnc_Destroy() argument
1753 LzmaEnc_CodeOneBlock(CLzmaEnc * p,Bool useLimits,UInt32 maxPackSize,UInt32 maxUnpackSize) LzmaEnc_CodeOneBlock() argument
1918 LzmaEnc_Alloc(CLzmaEnc * p,UInt32 keepWindowSize,ISzAlloc * alloc,ISzAlloc * allocBig) LzmaEnc_Alloc() argument
1968 LzmaEnc_Init(CLzmaEnc * p) LzmaEnc_Init() argument
2026 LzmaEnc_InitPrices(CLzmaEnc * p) LzmaEnc_InitPrices() argument
2041 LzmaEnc_AllocAndInit(CLzmaEnc * p,UInt32 keepWindowSize,ISzAlloc * alloc,ISzAlloc * allocBig) LzmaEnc_AllocAndInit() argument
2061 CLzmaEnc *p = (CLzmaEnc *)pp; LzmaEnc_Prepare() local
2071 CLzmaEnc *p = (CLzmaEnc *)pp; LzmaEnc_PrepareForLzma2() local
2076 LzmaEnc_SetInputBuf(CLzmaEnc * p,const Byte * src,SizeT srcLen) LzmaEnc_SetInputBuf() argument
2086 CLzmaEnc *p = (CLzmaEnc *)pp; LzmaEnc_MemPrepare() local
2095 CLzmaEnc *p = (CLzmaEnc *)pp; LzmaEnc_Finish() local
2113 CSeqOutStreamBuf *p = (CSeqOutStreamBuf *)pp; MyWrite() local
2128 const CLzmaEnc *p = (CLzmaEnc *)pp; LzmaEnc_GetNumAvailableBytes() local
2134 const CLzmaEnc *p = (CLzmaEnc *)pp; LzmaEnc_GetCurBuf() local
2141 CLzmaEnc *p = (CLzmaEnc *)pp; LzmaEnc_CodeOneMemBlock() local
2175 CLzmaEnc *p = (CLzmaEnc *)pp; LzmaEnc_Encode() local
2208 CLzmaEnc *p = (CLzmaEnc *)pp; LzmaEnc_WriteProperties() local
2239 CLzmaEnc *p = (CLzmaEnc *)pp; LzmaEnc_MemEncode() local
2264 CLzmaEnc *p = (CLzmaEnc *)LzmaEnc_Create(alloc); LzmaEncode() local
[all...]
/titanic_52/usr/src/cmd/fs.d/udfs/mkfs/
H A Dudfslib.c275 ud_swap_ext_ad(struct extent_ad *p) in ud_swap_ext_ad() argument
277 p->ext_len = SWAP32(p->ext_len); in ud_swap_ext_ad()
278 p->ext_loc = SWAP32(p->ext_loc); in ud_swap_ext_ad()
284 ud_swap_regid(struct regid *p) in ud_swap_regid() argument
289 ud_swap_icb_tag(struct icb_tag *p) in ud_swap_icb_tag() argument
291 p->itag_prnde = SWAP32(p->itag_prnde); in ud_swap_icb_tag()
292 p in ud_swap_icb_tag()
301 ud_swap_short_ad(struct short_ad * p) ud_swap_short_ad() argument
308 ud_swap_long_ad(struct long_ad * p) ud_swap_long_ad() argument
316 ud_swap_pri_vol_desc(struct pri_vol_desc * p) ud_swap_pri_vol_desc() argument
336 ud_swap_iuvd(struct iuvd_desc * p) ud_swap_iuvd() argument
344 ud_swap_vdp(struct vol_desc_ptr * p) ud_swap_vdp() argument
351 ud_swap_avdp(struct anch_vol_desc_ptr * p) ud_swap_avdp() argument
358 ud_swap_part_desc(struct part_desc * p) ud_swap_part_desc() argument
382 ud_swap_log_desc(struct log_vol_desc * p) ud_swap_log_desc() argument
395 ud_swap_unall_desc(struct unall_spc_desc * p) ud_swap_unall_desc() argument
402 ud_swap_lvint(struct log_vol_int_desc * p) ud_swap_lvint() argument
425 ud_swap_fileset_desc(struct file_set_desc * p) ud_swap_fileset_desc() argument
441 ud_swap_term_desc(struct term_desc * p) ud_swap_term_desc() argument
446 ud_swap_file_id(struct file_id * p) ud_swap_file_id() argument
454 ud_swap_alloc_ext(struct alloc_ext_desc * p) ud_swap_alloc_ext() argument
461 ud_swap_space_bitmap(struct space_bmap_desc * p) ud_swap_space_bitmap() argument
468 ud_swap_file_entry(struct file_entry * p,int32_t rdflag) ud_swap_file_entry() argument
[all...]
/titanic_52/usr/src/man/man7p/
H A DMakefile19 MANSECT= 7p
21 MANFILES= arp.7p \
22 dlpi.7p \
23 icmp.7p \
24 icmp6.7p \
25 if_tcp.7p \
26 inet.7p \
27 inet6.7p \
28 ip.7p \
29 ip6.7p \
[all...]
/titanic_52/usr/src/uts/common/os/
H A Dexit.c157 proc_t *p = ttoproc(t); in restart_init() local
158 user_t *up = PTOU(p); in restart_init()
168 zcmn_err(p->p_zone->zone_id, CE_WARN, in restart_init()
172 if (!INGLOBALZONE(p)) { in restart_init()
175 p->p_zone->zone_name, p->p_pid, reason_buf); in restart_init()
184 closeall(P_FINFO(p)); in restart_init()
191 mutex_enter(&p->p_lock); in restart_init()
192 prbarrier(p); in restart_init()
194 p in restart_init()
314 proc_is_exiting(proc_t * p) proc_is_exiting() argument
332 proc_t *p = ttoproc(t); proc_exit() local
1178 proc_detach(proc_t * p) proc_detach() argument
1214 freeproc(proc_t * p) freeproc() argument
[all...]
/titanic_52/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_zip.c46 uint8_t *p; in interpret_ddp_zip() local
70 p = &zip->zip_func; in interpret_ddp_zip()
72 if ((p+6 > tail) || (p+7+p[6] > tail)) in interpret_ddp_zip()
76 "ZIP GNI Zone = \"%.*s\"", p[6], &p[7]); in interpret_ddp_zip()
79 p = &zip->zip_func; in interpret_ddp_zip()
81 gniflags = p[1]; in interpret_ddp_zip()
108 p in interpret_ddp_zip()
268 char *p = buf; zip_flags() local
289 char *p = buf; zip_flags_long() local
[all...]
/titanic_52/usr/src/contrib/ast/src/lib/libast/astsa/
H A Dsfstr.c27 #define VALID(p,f) ((p=(Sfstr_t*)f)>=&strs[0]&&p<&strs[elementsof(strs)]) argument
32 extend(Sfstr_t* p, int n) in extend() argument
38 n += p->end - p->beg; in extend()
39 o = p->nxt - p->beg; in extend()
40 if (!(p->beg = realloc(p in extend()
50 Sfstr_t* p; sfclose() local
66 Sfstr_t* p; sfprintf() local
99 Sfstr_t* p; sfputc() local
117 Sfstr_t* p; sfputr() local
144 Sfstr_t* p; sfstrbase() local
154 Sfstr_t* p; sfstropen() local
171 _sf_strseek(f,p,m) global() argument
188 Sfstr_t* p; sfstrseek() local
198 Sfstr_t* p; sfstrset() local
208 Sfstr_t* p; sfstrtell() local
221 Sfstr_t* p; sfstruse() local
234 Sfstr_t* p; sfwrite() local
[all...]
/titanic_52/usr/src/lib/libnsl/saf/
H A Ddoconfig.c79 char *p; /* scratch pointer */ in doconfig() local
92 p = strchr(buf, '\n'); in doconfig()
94 if (p == NULL) { in doconfig()
98 *p = '\0'; in doconfig()
101 p = strchr(buf, COMMENT); in doconfig()
102 if (p) in doconfig()
103 *p = '\0'; in doconfig()
112 p = &buf[strlen(buf) - 1]; in doconfig()
113 while (*p && isspace(*p)) in doconfig()
173 doassign(char * p) doassign() argument
269 dopush(int fd,char * p) dopush() argument
316 dopop(int fd,char * p) dopop() argument
373 dorun(char * p,int waitflg) dorun() argument
502 eatwhite(char * p) eatwhite() argument
[all...]
/titanic_52/usr/src/contrib/ast/src/lib/libast/features/
H A Daso11 #define _aso_cas8(p,o,n) __sync_val_compare_and_swap(p,o,n)
12 #define _aso_inc8(p) __sync_fetch_and_add(p,1)
13 #define _aso_dec8(p) __sync_fetch_and_sub(p,1)
14 #define _aso_cas16(p,o,n) __sync_val_compare_and_swap(p,o,n)
15 #define _aso_inc16(p) __sync_fetch_and_add(p,
[all...]
/titanic_52/usr/src/cmd/msgfmt/
H A Dcheck_header.c55 char *p = *mbuf; in get_one_line() local
68 q = p; in get_one_line()
69 while (((*fsize) != 0) && (*p++ != '\n')) { in get_one_line()
72 len = p - q; in get_one_line()
80 *mbuf = p; in get_one_line()
90 char *mbuf, *p, *buf; in check_gnu() local
108 p = linebuf; in check_gnu()
110 while ((*p == '#') || (*p == '\n')) { in check_gnu()
116 p in check_gnu()
[all...]
/titanic_52/usr/src/cmd/abi/spectrans/spec2trace/
H A Dutil.c53 char *p; in strnormalize() local
57 for (p = str; *p != NULL; p++) { in strnormalize()
58 if (isspace(*p)) { in strnormalize()
59 *p = ' '; in strnormalize()
62 p--; in strnormalize()
63 while (p >= str && (isspace(*p) || *p in strnormalize()
76 char *p; strtrim() local
93 char *p; strlower() local
132 in_string_set(char * p,char * set) in_string_set() argument
164 strend(char * p) strend() argument
173 lastspace(char * p) lastspace() argument
189 skipb(char * p) skipb() argument
201 nextb(char * p) nextb() argument
213 skipsep(char * p) skipsep() argument
229 nextsep(char * p) nextsep() argument
244 nextsep2(char * p) nextsep2() argument
261 char *p; objectname() local
373 compare(const void * p,const void * q) compare() argument
[all...]
/titanic_52/usr/src/lib/krb5/plugins/kdb/db2/libdb2/btree/
H A Dbt_conv.c71 char *p; local
92 p = (char *)GETBINTERNAL(h, i);
93 P_32_SWAP(p);
94 p += sizeof(u_int32_t);
95 P_32_SWAP(p);
96 p += sizeof(db_pgno_t);
97 if (*(u_char *)p & P_BIGKEY) {
98 p += sizeof(u_char);
99 P_32_SWAP(p);
100 p
139 char *p; global() local
208 char *p; global() local
[all...]
/titanic_52/usr/src/cmd/mdb/intel/mdb/
H A Dproc_ia32dep.c140 mdb_warn("failed to read from ucontext_t %p", addr); in pt_regs()
169 mdb_printf("%%cs = 0x%04x\t\t%%eax = 0x%0?p %A\n", in pt_regs()
172 mdb_printf("%%ds = 0x%04x\t\t%%ebx = 0x%0?p %A\n", in pt_regs()
175 mdb_printf("%%ss = 0x%04x\t\t%%ecx = 0x%0?p %A\n", in pt_regs()
178 mdb_printf("%%es = 0x%04x\t\t%%edx = 0x%0?p %A\n", in pt_regs()
181 mdb_printf("%%fs = 0x%04x\t\t%%esi = 0x%0?p %A\n", in pt_regs()
184 mdb_printf("%%gs = 0x%04x\t\t%%edi = 0x%0?p %A\n\n", in pt_regs()
187 mdb_printf(" %%eip = 0x%0?p %A\n", grs[EIP], grs[EIP]); in pt_regs()
188 mdb_printf(" %%ebp = 0x%0?p\n", grs[EBP]); in pt_regs()
189 mdb_printf("%%kesp = 0x%0?p\ in pt_regs()
224 char *p = buf; fpcw2str() local
288 char *p = buf; fpsw2str() local
332 char *p = buf; fpmxcsr2str() local
574 pt_step_out(mdb_tgt_t * t,uintptr_t * p) pt_step_out() argument
590 pt_next(mdb_tgt_t * t,uintptr_t * p) pt_next() argument
[all...]
/titanic_52/usr/src/lib/libdtrace/common/
H A Ddt_pq.c34 dt_pq_t *p; in dt_pq_init() local
37 if ((p = dt_zalloc(dtp, sizeof (dt_pq_t))) == NULL) in dt_pq_init()
40 p->dtpq_items = dt_zalloc(dtp, size * sizeof (p->dtpq_items[0])); in dt_pq_init()
41 if (p->dtpq_items == NULL) { in dt_pq_init()
42 dt_free(dtp, p); in dt_pq_init()
46 p->dtpq_hdl = dtp; in dt_pq_init()
47 p->dtpq_size = size; in dt_pq_init()
48 p->dtpq_last = 1; in dt_pq_init()
49 p in dt_pq_init()
56 dt_pq_fini(dt_pq_t * p) dt_pq_fini() argument
65 dt_pq_getvalue(dt_pq_t * p,uint_t index) dt_pq_getvalue() argument
72 dt_pq_insert(dt_pq_t * p,void * item) dt_pq_insert() argument
94 dt_pq_walk(dt_pq_t * p,uint_t * cookie) dt_pq_walk() argument
104 dt_pq_pop(dt_pq_t * p) dt_pq_pop() argument
[all...]
/titanic_52/usr/src/cmd/tip/
H A Dvalue.c33 value_t *p; in vinit() local
38 for (p = vtable; p->v_name != NULL; p++) { in vinit()
39 if (p->v_type&ENVIRON) in vinit()
40 if (cp = getenv(p->v_name)) in vinit()
41 p->v_value = cp; in vinit()
42 if (p->v_type&IREMOTE) in vinit()
43 number(p->v_value) = *address(p in vinit()
75 vassign(value_t * p,char * v) vassign() argument
122 value_t *p; vlex() local
147 value_t *p; vtoken() local
187 vprint(value_t * p) vprint() argument
251 value_t *p; vlookup() local
262 char *p = s, c; vinterp() local
316 value_t *p; vstring() local
[all...]
/titanic_52/usr/src/cmd/auditd/
H A Ddoorway.c260 load_function(plugin_t *p, char *name, auditd_rc_t (**func)()) in load_function() argument
262 *func = (auditd_rc_t (*)())dlsym(p->plg_dlptr, name); in load_function()
281 load_plugin(plugin_t *p) in load_plugin() argument
290 if ((fd = open(p->plg_path, O_NONBLOCK | O_RDONLY)) != -1) { in load_plugin()
300 p->plg_path, strerror(errno)); in load_plugin()
314 p->plg_path); in load_plugin()
327 p->plg_path); in load_plugin()
337 p->plg_path); in load_plugin()
345 p->plg_dlptr = dlopen(p in load_plugin()
379 unload_plugin(plugin_t * p) unload_plugin() argument
420 open_return(plugin_t * p,char * attrval) open_return() argument
437 plugin_t *p; auditd_thread_init() local
576 qpool_init(plugin_t * p,int threshold) qpool_init() argument
638 qpool_close(plugin_t * p) qpool_close() argument
663 qpool_withdraw(plugin_t * p) qpool_withdraw() argument
757 qpool_return(plugin_t * p,audit_q_t * node) qpool_return() argument
810 dump_state(char * src,plugin_t * p,uint64_t count,char * msg) dump_state() argument
846 plugin_t *p; policy_is_block() local
872 plugin_t *p; policy_update() local
902 plugin_t *p; queue_buffer() local
1066 plugin_t *p; adjust_priority() local
1120 plugin_t *p; input() local
1182 process(plugin_t * p) process() argument
[all...]
/titanic_52/usr/src/contrib/ast/src/lib/libast/include/
H A Daso.h107 #define asocaschar(p,o,n) asocas8(p,o,n) argument
108 #define asogetchar(p) asoget8(p) argument
109 #define asoincchar(p) asoinc8(p) argument
110 #define asodecchar(p) asodec8(p) argument
117 #define asocasshort(p,o,n) asocas16(p, argument
118 asogetshort(p) global() argument
119 asoincshort(p) global() argument
120 asodecshort(p) global() argument
128 asocasint(p,o,n) global() argument
129 asogetint(p) global() argument
130 asoincint(p) global() argument
131 asodecint(p) global() argument
135 asocaslong(p,o,n) global() argument
136 asogetlong(p) global() argument
137 asoinclong(p) global() argument
138 asodeclong(p) global() argument
142 asocassize(p,o,n) global() argument
143 asogetsize(p) global() argument
144 asoincsize(p) global() argument
145 asodecsize(p) global() argument
156 asocasint(p,o,n) global() argument
157 asogetint(p) global() argument
158 asoincint(p) global() argument
159 asodecint(p) global() argument
163 asocaslong(p,o,n) global() argument
164 asogetlong(p) global() argument
165 asoinclong(p) global() argument
166 asodeclong(p) global() argument
170 asocassize(p,o,n) global() argument
171 asogetsize(p) global() argument
172 asoincsize(p) global() argument
173 asodecsize(p) global() argument
[all...]
/titanic_52/usr/src/cmd/troff/nroff.d/
H A Dn10.c107 char *p, *cp, *q; in ptinit() local
126 p = codestr; in ptinit()
127 p = skipstr(p); /* skip over type, could check */ in ptinit()
128 p = skipstr(p); p = getint(p, &t.bset); in ptinit()
129 p = skipstr(p); in ptinit()
591 char *p, *q; move() local
[all...]
/titanic_52/usr/src/cmd/ast/libast/i386/FEATURE/
H A Daso9 #define _aso_cas8(p,o,n) atomic_cas_8(p,o,n)
10 #define _aso_inc8(p) (atomic_add_8_nv(p,1)-1)
11 #define _aso_dec8(p) (atomic_add_8_nv(p,-1)+1)
12 #define _aso_cas16(p,o,n) atomic_cas_16(p,o,n)
13 #define _aso_inc16(p) (atomic_add_16_nv(p,
[all...]

12345678910>>...133