Searched refs:pad (Results 1 - 25 of 414) sorted by relevance

1234567891011>>

/macosx-10.10.1/ncurses-44/ncurses/ncurses/widechar/
H A Dlib_pecho_wchar.c38 pecho_wchar(WINDOW *pad, const cchar_t * wch) argument
40 T((T_CALLED("pecho_wchar(%p, %s)"), pad, _tracech_t(wch)));
42 if (pad == 0)
45 if (!(pad->_flags & _ISPAD))
46 returnCode(wecho_wchar(pad, wch));
48 wadd_wch(pad, wch);
49 prefresh(pad, pad->_pad._pad_y,
50 pad->_pad._pad_x,
51 pad
[all...]
/macosx-10.10.1/ncurses-44/ncurses/menu/
H A Dm_pad.c52 | Function : int set_menu_pad(MENU *menu, int pad)
62 set_menu_pad(MENU * menu, int pad) argument
66 T((T_CALLED("set_menu_pad(%p,%d)"), menu, pad));
68 if (!isprint(UChar(pad)))
72 menu->pad = pad;
86 | Return Values : The pad character
92 returnCode(Normalize_Menu(menu)->pad);
/macosx-10.10.1/Libinfo-459/lookup.subproj/
H A Dils.c95 uint32_t u32, i, pad; local
314 pad = padsize(hsize, largest, align);
315 memsize += pad;
316 hsize += pad;
341 pad = padsize(hsize, sizeof(char *), align);
342 if (pad != 0)
344 memset(hp, 0, pad);
345 hp += pad;
346 hsize += pad;
379 pad
[all...]
/macosx-10.10.1/ncurses-44/ncurses/form/
H A Dfld_pad.c41 | Description : Set the pad character used to fill the field. This must
45 | E_BAD_ARGUMENT - invalid field pointer or pad character
58 if (field->pad != ch)
60 field->pad = ch;
73 | Description : Retrieve the fields pad character.
75 | Return Values : The pad character.
82 returnCode(Normalize_Field(field)->pad);
/macosx-10.10.1/bind9-45.101/bind9/lib/lwres/
H A Dprint.c87 int pad; local
117 length = pad = zeropad = 0;
314 pad = width - length -
316 if (pad < 0)
317 pad = 0;
320 count += strlen(head) + strlen(buf) + pad +
323 while (pad > 0 && size > 1U) {
326 pad--;
344 while (pad > 0 && size > 1U) {
347 pad
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/tools/genrb/
H A Drbutil.h25 int32_t itostr(char * buffer, int32_t i, uint32_t radix, int32_t pad);
H A Drbutil.c66 itostr(char * buffer, int32_t i, uint32_t radix, int32_t pad) argument
87 while (length < pad){
101 num= (pad>=length) ? pad :length;
/macosx-10.10.1/ncurses-44/ncurses/include/
H A DMKparametrized.sh42 * A value of -1 in the table means suppress both pad and % translations.
43 * A value of 0 in the table means do pad but not % translations.
44 * A value of 1 in the table means do both pad and % translations.
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGCriticalEdgeBreakingPhase.cpp78 BasicBlock* pad = m_insertionSet.insertBefore(*successor, PNaN); local
79 pad->appendNode(
81 pad->predecessors.append(predecessor);
82 (*successor)->replacePredecessor(predecessor, pad);
84 *successor = pad;
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/
H A Dprint.c90 int pad; local
120 length = pad = zeropad = 0;
377 pad = width - length -
379 if (pad < 0)
380 pad = 0;
383 count += strlen(head) + strlen(buf) + pad +
386 while (pad > 0 && size > 1) {
389 pad--;
407 while (pad > 0 && size > 1) {
410 pad
[all...]
/macosx-10.10.1/ntp-92/lib/isc/
H A Dprint.c90 int pad; local
120 length = pad = zeropad = 0;
377 pad = width - length -
379 if (pad < 0)
380 pad = 0;
383 count += strlen(head) + strlen(buf) + pad +
386 while (pad > 0 && size > 1) {
389 pad--;
407 while (pad > 0 && size > 1) {
410 pad
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/Tools/PrettyPrinting/
H A DFormatterDebug.js8 function pad(str, x, doNotQuote) function in function:Formatter.function
19 debug += "Token: " + pad(String(token), 14, !token);
22 debug += "Position: " + pad(String(originalPosition), 10);
26 debug += "Lexical: " + pad(String(state.lexical.type), 10); // JavaScript
27 debug += "Prev: " + pad(String(state.lexical.prev ? state.lexical.prev.type : state.lexical.prev), 10, !state.lexical.prev);
30 debug += "Stack: " + pad(String(state.stack[state.stack.length-1]), 16); // CSS
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dcomment.js55 var pad = options.padding == null ? " " : options.padding;
65 self.replaceRange(baseString + commentString + pad, Pos(i, 0), Pos(i, cut));
70 self.replaceRange(commentString + pad, Pos(i, 0));
90 var pad = options.padding == null ? " " : options.padding;
96 self.replaceRange(pad + endString, Pos(end));
97 self.replaceRange(startString + pad, Pos(from.line, 0));
101 self.replaceRange(lead + pad, Pos(i, 0));
116 var pad = options.padding == null ? " " : options.padding, didSomething;
132 if (line.slice(endPos, endPos + pad.length) == pad) endPo
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/hcrypto/
H A Dmd2.c122 unsigned char pad[16]; local
126 memset(pad, padlen, padlen);
128 MD2_Update(m, pad, padlen);
129 memcpy(pad, m->checksum, 16);
130 MD2_Update(m, pad, 16);
/macosx-10.10.1/OpenSSH-189/osslshim/ossl-asn1/
H A Dcs-x_bignum.c146 int pad; local
150 if(BN_num_bits(bn) & 0x7) pad = 0;
151 else pad = 1;
153 if(pad) *cont++ = 0;
156 return pad + BN_num_bytes(bn);
H A Dcs-x_long.c141 int clen, pad, i; local
156 /* If MSB of leading octet set we need to pad */
157 if(!(clen & 0x7)) pad = 1;
158 else pad = 0;
164 if(pad) *cont++ = (ltmp < 0) ? 0xff : 0;
171 return clen + pad;
/macosx-10.10.1/OpenSSL098-52/src/crypto/asn1/
H A Dx_bignum.c113 int pad; local
117 if(BN_num_bits(bn) & 0x7) pad = 0;
118 else pad = 1;
120 if(pad) *cont++ = 0;
123 return pad + BN_num_bytes(bn);
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/treectrl/
H A Dmailwasher.rb14 pad = 4
17 t.column_create(:text=>'Delete', :textpadx=>pad, :tag=>'delete')
18 t.column_create(:text=>'Bounce', :textpadx=>pad, :tag=>'bounce')
19 t.column_create(:text=>'Status', :width=>80, :textpadx=>pad,
21 t.column_create(:text=>'Size', :width=>40, :textpadx=>pad,
23 t.column_create(:text=>'From', :width=>140, :textpadx=>pad, :tag=>'from')
24 t.column_create(:text=>'Subject', :width=>240, :textpadx=>pad,
26 t.column_create(:text=>'Received', :textpadx=>pad, :arrow=>:up,
28 t.column_create(:text=>'Attachments', :textpadx=>pad, :tag=>'attachments')
37 t.column_configure(0, :text=>'Delete', :textpadx=>pad,
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/ntlm/
H A Dapop.c116 uint8_t pad[CC_MD5_BLOCK_BYTES]; local
129 memset(pad, 0x36, sizeof(pad));
131 pad[n] ^= key[n];
136 CC_MD5_Update(&ctx.ipad, pad, sizeof(pad));
138 memset(pad, 0x5c, sizeof(pad));
140 pad[n] ^= key[n];
142 CC_MD5_Update(&ctx.opad, pad, sizeo
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/tm/
H A Dtmxfmt.c45 number(register char* s, register char* e, register long n, register int p, int w, int pad) argument
51 if (p > 0 && (pad == 0 || pad == '0'))
60 switch (pad)
108 int pad; local
155 pad = 0;
165 pad = c;
176 pad = c;
263 cp = number(cp, ep, (long)(1900 + tm->tm_year) / 100, 2, width, pad);
266 cp = number(cp, ep, (long)tm->tm_mday, 2, width, pad);
[all...]
/macosx-10.10.1/Libc-1044.1.2/include/protocols/
H A Dtalkd.h95 unsigned char pad; member in struct:__anon2755
122 unsigned char pad; member in struct:__anon2756
/macosx-10.10.1/text_cmds-88/lam/
H A Dlam.c66 short pad; /* pad flag for missing columns */ member in struct:openfile
79 static char *pad(struct openfile *);
124 ip->pad = P;
152 ip->pad = 1;
182 pad(struct openfile *ip) function
188 if (ip->pad) {
205 return (pad(ip));
218 return (pad(ip));
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DOpcode.h95 unsigned pad = width - strlen(opcodeNames[op]); local
96 pad = std::min(pad, PADDING_STRING_LENGTH);
97 return PADDING_STRING + PADDING_STRING_LENGTH - pad;
/macosx-10.10.1/Libc-1044.1.2/stdlib/OpenBSD/
H A Decvt.c33 __cvt(double value, int ndigit, int * __restrict decpt, int * __restrict sign, int fmode, int pad) argument
76 if (pad && fmode)
88 if (pad) {
/macosx-10.10.1/Libc-1044.1.2/stdio/FreeBSD/
H A Dmktemp.c106 char *pad; local
181 pad = strchr(padchar, *trv);
182 if (pad == NULL) {
188 *trv = (*++pad == '\0') ? padchar[0] : *pad;

Completed in 195 milliseconds

1234567891011>>