Searched refs:sizes (Results 1 - 25 of 111) sorted by relevance

12345

/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn_mp_prime_rabin_miller_trials.c21 } sizes[] = { variable in typeref:struct:__anon564
37 for (x = 0; x < (int)(sizeof(sizes)/(sizeof(sizes[0]))); x++) {
38 if (sizes[x].k == size) {
39 return sizes[x].t;
40 } else if (sizes[x].k > size) {
41 return (x == 0) ? sizes[0].t : sizes[x - 1].t;
44 return sizes[x-1].t + 1;
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/etc/
H A D2kprime.c5 int sizes[] = {256, 512, 768, 1024, 1536, 2048, 3072, 4096}; variable
19 for (x = 0; x < (int)(sizeof(sizes) / sizeof(sizes[0])); x++) {
21 mp_2expt(&q, sizes[x]);
31 printf("No primes of size %d found\n", sizes[x]);
65 ++sizes[x];
70 printf("\n\n%d-bits (k = %lu) = %s\n", sizes[x], z, buf);
71 fprintf(out, "%d-bits (k = %lu) = %s\n", sizes[x], z, buf); fflush(out);
H A Ddrprime.c4 int sizes[] = { 1+256/DIGIT_BIT, 1+512/DIGIT_BIT, 1+768/DIGIT_BIT, 1+1024/DIGIT_BIT, 1+2048/DIGIT_BIT, 1+4096/DIGIT_BIT }; variable
16 for (x = 0; x < (int)(sizeof(sizes)/sizeof(sizes[0])); x++) {
18 printf("Seeking a %d-bit safe prime\n", sizes[x] * DIGIT_BIT);
19 mp_grow(&a, sizes[x]);
21 for (y = 1; y < sizes[x]; y++) {
27 a.used = sizes[x];
46 printf("Error not DR modulus\n"); sizes[x] += 1; goto top;
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSHTMLLinkElementCustom.cpp39 JSValue JSHTMLLinkElement::sizes(ExecState* exec) const function in class:WebCore::JSHTMLLinkElement
41 return toJS(exec, globalObject(), impl().sizes());
/macosx-10.10/tcl-105/tcl_ext/mk4tcl/metakit/examples/
H A Dmkbug.cpp14 static int sizes[] = {999, 999, 999, 3, 0}; local
16 for (int i = 0; sizes[i]; ++i) {
18 for (int j = 0; j < sizes[i]; ++j)
/macosx-10.10/groff-38/groff/font/devdvi/generate/
H A DCompileFonts2 # Compile fonts in the sizes needed by groff.
3 sizes="5 6 7 8 9 10 10.95 12 14 14.40 16 17.28 18 20 20.74 22 24 24.88 28 36"
9 for s in $sizes; do
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/tests/
H A Dftrunc.test56 set sizes {}
58 lappend sizes [file size TRUNCATE.TMP]
60 lappend sizes [file size TRUNCATE.TMP]
61 set sizes
66 set sizes {}
68 lappend sizes [file size TRUNCATE.TMP]
70 lappend sizes [file size TRUNCATE.TMP]
71 set sizes
84 set sizes {}
87 lappend sizes [fil
[all...]
/macosx-10.10/tcl-105/tcl_ext/bwidget/bwidget/
H A Dxpm2image.tcl31 # extract the sizes in the xpm data
33 set sizes [lindex $xpm 0]
34 set nsizes [llength $sizes]
36 set data(width) [lindex $sizes 0]
37 set data(height) [lindex $sizes 1]
38 set data(ncolors) [lindex $sizes 2]
39 set data(chars_per_pixel) [lindex $sizes 3]
42 if {[llength $sizes] >= 6} {
43 set data(x_hotspot) [lindex $sizes 4]
44 set data(y_hotspot) [lindex $sizes
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/bn/
H A Dbnspeed.c165 static int sizes[NUM_SIZES]={128,256,512,1024,2048}; variable
166 /*static int sizes[NUM_SIZES]={59,179,299,419,539}; */
193 BN_rand(a,sizes[i],1,0);
196 BN_rand(b,sizes[j],1,0);
201 printf("mul %4d x %4d -> %8.3fms\n",sizes[i],sizes[j],tm*1000.0/num);
209 BN_rand(a,sizes[i],1,0);
214 printf("sqr %4d x %4d -> %8.3fms\n",sizes[i],sizes[i],tm*1000.0/num);
221 BN_rand(a,sizes[
[all...]
H A Dexpspeed.c194 static int sizes[NUM_SIZES]={128,256,512,1024,2048,4096,8192}; variable
196 /*static int sizes[NUM_SIZES]={59,179,299,419,539}; */
245 if (!BN_generate_prime(c,sizes[i],0,ADD,REM,genprime_cb,NULL)) goto err;
254 if (!BN_pseudo_rand(a,sizes[i],1,0)) goto err;
256 if (!BN_pseudo_rand(b,sizes[i],1,0)) goto err;
259 if (!BN_pseudo_rand(c,sizes[i],1,1)) goto err;
328 sizes[i],sizes[i],sizes[i],tm*1000.0/num,tm*mul_c[i]/num, num);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/bn/
H A Dbnspeed.c183 static int sizes[NUM_SIZES]={128,256,512,1024,2048}; variable
184 /*static int sizes[NUM_SIZES]={59,179,299,419,539}; */
211 BN_rand(a,sizes[i],1,0);
214 BN_rand(b,sizes[j],1,0);
219 printf("mul %4d x %4d -> %8.3fms\n",sizes[i],sizes[j],tm*1000.0/num);
227 BN_rand(a,sizes[i],1,0);
232 printf("sqr %4d x %4d -> %8.3fms\n",sizes[i],sizes[i],tm*1000.0/num);
239 BN_rand(a,sizes[
[all...]
H A Dexpspeed.c183 static int sizes[NUM_SIZES]={256,512,1024,2048,4096,8192}; variable
185 /*static int sizes[NUM_SIZES]={59,179,299,419,539}; */
215 BN_rand(a,sizes[i],1,0);
216 BN_rand(b,sizes[i],1,0);
217 BN_rand(c,sizes[i],1,1);
227 printf("mul %4d ^ %4d %% %d -> %8.3fms %5.1f\n",sizes[i],sizes[i],sizes[i],tm*1000.0/num,tm*mul_c[i]/num);
/macosx-10.10/remote_cmds-47/talkd.tproj/
H A Dannounce.c113 int sizes[N_LINES]; local
124 sizes[i] = strlen(line_buf[i]);
125 max_size = max(max_size, sizes[i]);
132 sizes[i] = strlen(line_buf[i]);
133 max_size = max(max_size, sizes[i]);
140 sizes[i] = strlen(line_buf[i]);
141 max_size = max(max_size, sizes[i]);
145 sizes[i] = strlen(line_buf[i]);
146 max_size = max(max_size, sizes[i]);
149 sizes[
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DIconURL.h64 IconURL(const URL& url, const String& sizes, const String& mimeType, IconType type) argument
66 , m_sizes(sizes)
/macosx-10.10/WebCore-7600.1.25/platform/
H A DSSLKeyGenerator.h36 // Returns strings representing key sizes that may be used
39 void getSupportedKeySizes(Vector<String>& sizes);
/macosx-10.10/WebKit2-7600.1.25/Shared/
H A DAPIClient.h41 // Helper class that can return an std::array of element sizes in a tuple.
44 static std::array<size_t, sizeof...(Interfaces)> sizes() function in struct:API::Client::InterfaceSizes
54 auto interfaceSizes = InterfaceSizes<ClientVersions>::sizes();
71 auto interfaceSizes = InterfaceSizes<ClientVersions>::sizes();
/macosx-10.10/WebCore-7600.1.25/loader/
H A DLinkLoader.h59 bool loadLink(const LinkRelAttribute&, const String& type, const String& sizes, const URL&, Document*);
H A DLinkLoader.cpp89 const String& sizes, const URL& href, Document* document)
95 document->addIconURL(href.string(), type, sizes, relAttribute.m_iconType);
88 loadLink(const LinkRelAttribute& relAttribute, const String& type, const String& sizes, const URL& href, Document* document) argument
/macosx-10.10/groff-38/groff/src/devices/xditview/
H A Dfont.c67 for (best = f->sizes; best; best = best->next)
71 best->next = f->sizes;
73 f->sizes = best;
88 for (fs = f->sizes; fs; fs=fs->next) {
145 DviFontSizeList *sizes, *new_size; local
161 sizes = 0;
165 DisposeFontSizes (dw, sizes);
166 sizes = 0;
172 new_size->next = sizes;
177 sizes
[all...]
/macosx-10.10/tcl-105/tcl_ext/memchan/memchan/htdocs/raw/
H A Dimages.exp8 logo in various sizes.
11 separate [mem/anim] page. The reason for the separation are the sizes
H A Danimations.exp7 [p] This page shows animations of the [mem/txt] logo in two sizes.
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLLinkElement.idl31 [Custom] attribute DOMSettableTokenList sizes;
/macosx-10.10/IOPCIFamily-239.1.2/
H A Dballoc.c320 vtd_baddr_t sizes [256] = { 1, atop(1024*1024), atop(4*1024*1024), 1, 3, 6, 1, 10, 99, 100, 50, 30, 0 }; local
355 L VTLOG("free(0x%x, 0x%x)\n", allocs[idx], sizes[idx]);
356 vtd_bfree(bf, allocs[idx], sizes[idx]);
358 allocs[idx] = sizes[idx] = 0;
360 sizes[idx] = (r >> 20);
361 if (!sizes[idx]) sizes[idx] = 1;
362 allocs[idx] = vtd_balloc(bf, sizes[idx], aligns[idx]);
363 L VTLOG("alloc(0x%x) 0x%x\n", sizes[idx], allocs[idx]);
371 L VTLOG("free(0x%x, 0x%x)\n", allocs[idx], sizes[id
[all...]
/macosx-10.10/dtrace-147/DTTk/Bin/
H A Dstacksize.d81 @sizes[execname] = quantize(this->stktop - this->stkptr);
91 printa(@sizes);
/macosx-10.10/dtrace-147/DTTk/Proc/
H A Dstacksize.d81 @sizes[execname] = quantize(this->stktop - this->stkptr);
91 printa(@sizes);

Completed in 197 milliseconds

12345