Searched refs:top (Results 51 - 75 of 1504) sorted by relevance

1234567891011>>

/macosx-10.10.1/OpenSSL098-52/src/crypto/bn/
H A Dbn_rand.c118 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) argument
141 /* make a random number and set the top and bottom bits */
177 if (top != -1)
179 if (top)
211 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
213 return bnrand(0, rnd, bits, top, bottom);
216 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
218 return bnrand(1, rnd, bits, top, bottom);
222 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
224 return bnrand(2, rnd, bits, top, botto
[all...]
H A Dbn_lib.c231 int i = a->top - 1;
289 ret->top=0;
328 for (i=b->top>>2; i>0; i--,A+=4,B+=4)
343 switch (b->top&3)
349 * the switch table by doing a=top&3; a--; goto jump_table[a];
350 * which fails for top== 0 */
357 memcpy(A,b->d,sizeof(b->d[0])*b->top);
382 * words <= b->dmax && top < words
396 r->top = b->top;
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/bn/
H A Dbn_rand.c65 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) argument
88 /* make a random number and set the top and bottom bits */
124 if (top != -1)
126 if (top)
157 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
159 return bnrand(0, rnd, bits, top, bottom);
162 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
164 return bnrand(1, rnd, bits, top, bottom);
168 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom)
170 return bnrand(2, rnd, bits, top, botto
[all...]
H A Dbn_lib.c266 if (a->top == 0) return(0);
267 l=a->d[a->top-1];
268 i=(a->top-1)*BN_BITS2;
321 ret->top=0;
361 /* This lot is an unrolled loop to copy b->top
387 for (i=b->top&(~7); i>0; i-=8)
394 switch (b->top&7)
414 * a=top&7
417 * If top is 0, this makes us jump to 0xffffffc
424 for (i=b->top>>
[all...]
/macosx-10.10.1/ncurses-44/ncurses/ncurses/base/
H A Dlib_scroll.c51 NCURSES_SIZE_T const top,
61 win, n, (long) top, (long) bottom));
63 if (top < 0
64 || bottom < top
83 limit = top - n;
92 for (line = top; line < limit && line <= win->_maxy; line++) {
103 for (line = top; line <= limit && line <= win->_maxy; line++) {
116 touchline(win, top, bottom - top + 1);
49 _nc_scroll_window(WINDOW *win, int const n, NCURSES_SIZE_T const top, NCURSES_SIZE_T const bottom, NCURSES_CH_T blank) argument
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/
H A Dtkdialog.rb5 top = TkFrame.new(root) {
9 msg = TkMessage.new(top) {
17 top.pack('fill'=>'both')
33 top.bind "Enter", proc{state 'active'}
36 top.bind "Leave", proc{state 'normal'}
54 root.pack('side'=>'top', 'fill'=>'both', 'expand'=>'yes')
H A Dtkbiff.rb74 $top = TkRoot.new
75 if ((TkWinfo.interps($top) - [my_appname]).find{|ip| ip =~ /^tkbiff/})
80 $top.withdraw
81 $list = TkScrollbox.new($top) {
88 TkButton.new($top) {
90 command proc {$top.withdraw}
93 $top.bind "Control-c", proc{exit}
94 $top.bind "Control-q", proc{exit}
95 $top.bind "space", proc{exit}
144 $top
[all...]
H A Dirbtkw.rbw34 top = TkToplevel.new(:title=>'IRB console')
35 top.protocol(:WM_DELETE_WINDOW){ Tk.exit }
44 console = TkTextIO.new(top, :mode=>:console,
47 console.yscrollbar(TkScrollbar.new(top, :width=>10).pack(:before=>console,
74 t_x = top.winfo_rootx
75 t_y = top.winfo_rooty
76 t_w = top.winfo_width
97 top.geometry("+#{t_x}+#{t_y}")
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/include/dns/
H A Dmaster.h101 dns_name_t *top,
110 dns_name_t *top,
120 dns_name_t *top,
131 dns_name_t *top,
140 dns_name_t *top,
149 dns_name_t *top,
158 dns_name_t *top,
169 dns_name_t *top,
181 dns_name_t *top,
194 dns_name_t *top,
[all...]
/macosx-10.10.1/cups-408/cups/ppdc/
H A Dppdc-mediasize.cxx53 top = tm;
63 if (top < 0.0f)
64 top = 0.0f;
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/treeql/docs/
H A Dapi.css10 margin-top: 2em;
22 margin-top: 0.5em;
26 padding-top: 1.5em;
64 padding-top: .125em;
70 padding-top: .125em;
75 padding-top: .25em;
/macosx-10.10.1/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/wsock/config/
H A Didnconf.tcl632 set top .wrap
633 toplevel $top
634 grab $top
635 wm title $top "idn wrapper - Wrap Executable"
637 frame $top.f1 -bd 1 -relief raised
638 frame $top.f2 -bd 1 -relief raised
639 pack $top.f1 -side top -fill x -expand on
640 pack $top.f2 -side top
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DLayoutTimelineOverviewGraph.css27 margin-top: 8px;
H A DScriptTimelineOverviewGraph.css27 margin-top: 8px;
H A DTimelineOverview.css47 top: 0;
55 top: 22px;
71 border-top: 1px solid rgba(0, 0, 0, 0.09);
76 top: 0;
H A DNetworkTimelineOverviewGraph.css27 padding-top: 3px;
36 margin-top: 1px;
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoplevel.ml5 (* top ::= definition | external | expression | ';' *)
10 (* ignore top-level semicolons. *)
25 (* Evaluate a top-level expression into an anonymous function. *)
27 print_endline "parsed a top-level expr";
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoplevel.ml7 (* top ::= definition | external | expression | ';' *)
12 (* ignore top-level semicolons. *)
29 (* Evaluate a top-level expression into an anonymous function. *)
31 print_endline "parsed a top-level expr";
/macosx-10.10.1/ruby-106/ruby/ext/curses/
H A Dview2.rb13 @top = nil
43 @top = 0
57 if( @top > 0 )
59 @top -= 1
60 str = @data_lines[@top]
73 if( @top + @screen.maxy < @data_lines.length )
75 @top += 1
76 str = @data_lines[@top + @screen.maxy - 1]
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/examples/tablelist/
H A Dbrowse.tcl28 # contained in a newly created top-level widget. Returns the name of the
40 # Create a top-level widget of the class DemoTop
42 set top .browseTop
43 for {set n 2} {[winfo exists $top]} {incr n} {
44 set top .browseTop$n
46 toplevel $top -class DemoTop
50 # columns and interactive sort capability within the top-level
52 set tf $top.tf
94 set menu $top.menu
104 bind $bodyTag <<Button3>> +[list demo::postPopupMenu $top
[all...]
H A Dbrowse_tile.tcl35 # contained in a newly created top-level widget. Returns the name of the
47 # Create a top-level widget of the class DemoTop
49 set top .browseTop
50 for {set n 2} {[winfo exists $top]} {incr n} {
51 set top .browseTop$n
53 toplevel $top -class DemoTop
57 # columns and interactive sort capability within the top-level
59 set tf $top.tf
101 set menu $top.menu
111 bind $bodyTag <<Button3>> +[list demo::postPopupMenu $top
[all...]
/macosx-10.10.1/ruby-106/ruby/lib/irb/
H A Dframe.rb44 def top(n = 0) method in class:IRB.Frame
65 # Convenience method for Frame#top
66 def Frame.top(n = 0) singleton method in class:IRB.Frame
67 @backtrace.top(n)
72 eval "self", @backtrace.top
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Dmsgbox.tcl22 pack $w.msg -side top
35 pack $w.left.label -side top
36 pack $w.left.sep -side top -fill x -expand no
42 pack $w.left.b$i -side top -pady 2 -anchor w -fill x
47 pack $w.right.label -side top
48 pack $w.right.sep -side top -fill x -expand no
54 pack $w.right.$t -side top -pady 2 -anchor w -fill x
/macosx-10.10.1/tcl-105/tk84/tk/library/demos/
H A Dmsgbox.tcl19 pack $w.msg -side top
35 pack $w.left.label -side top
36 pack $w.left.sep -side top -fill x -expand no
42 pack $w.left.b$i -side top -pady 2 -anchor w -fill x
47 pack $w.right.label -side top
48 pack $w.right.sep -side top -fill x -expand no
54 pack $w.right.$t -side top -pady 2 -anchor w -fill x
/macosx-10.10.1/dtrace-147/DTTk/Bin/
H A Diotop4 # iotop - display top disk I/O events by process.
12 # [-m mount_point] [-t top] [interval [count]]
25 # -t top # print top number only
32 # iotop -t 20 # print top 20 lines only
69 # INSPIRATION: top(1) by William LeFebvre
103 opt_top=0; opt_elapsed=0; opt_dtime=0; interval=5; count=-1; top=0
117 t) opt_top=1; top=$OPTARG ;;
121 [-m mount_point] [-t top] [interval [count]]
132 -t top # prin
[all...]

Completed in 450 milliseconds

1234567891011>>