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

12345

/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/libtommath/
H A Dbn_mp_prime_rabin_miller_trials.c21 } sizes[] = { variable in typeref:struct:__anon790
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.9.5/Heimdal-323.92.1/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.9.5/tcl-102/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.9.5/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.9.5/WebCore-7537.78.1/bindings/js/
H A DJSHTMLLinkElementCustom.cpp39 JSValue JSHTMLLinkElement::sizes(ExecState* exec) const function in class:WebCore::JSHTMLLinkElement
42 JSValue result = toJS(exec, globalObject(), WTF::getPtr(output->sizes()));
/macosx-10.9.5/tcl-102/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.9.5/tcl-102/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.9.5/Security-55471.14.18/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.9.5/remote_cmds-41.90.1/talkd.tproj/
H A Dannounce.c112 int sizes[N_LINES]; local
123 sizes[i] = strlen(line_buf[i]);
124 max_size = max(max_size, sizes[i]);
131 sizes[i] = strlen(line_buf[i]);
132 max_size = max(max_size, sizes[i]);
139 sizes[i] = strlen(line_buf[i]);
140 max_size = max(max_size, sizes[i]);
144 sizes[i] = strlen(line_buf[i]);
145 max_size = max(max_size, sizes[i]);
148 sizes[
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DIconURL.h64 IconURL(const KURL& url, const String& sizes, const String& mimeType, IconType type) argument
66 , m_sizes(sizes)
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DSSLKeyGenerator.h36 // Returns strings representing key sizes that may be used
39 void getSupportedKeySizes(Vector<String>& sizes);
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DLinkLoader.h59 bool loadLink(const LinkRelAttribute&, const String& type, const String& sizes, const KURL&, Document*);
H A DLinkLoader.cpp89 const String& sizes, const KURL& 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 KURL& href, Document* document) argument
/macosx-10.9.5/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.9.5/tcl-102/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.9.5/WebCore-7537.78.1/html/
H A DHTMLLinkElement.idl31 [Custom] attribute DOMSettableTokenList sizes;
/macosx-10.9.5/IOPCIFamily-224.92.1/
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.9.5/WebCore-7537.78.1/platform/graphics/
H A DFontDescription.cpp38 float sizes[2]; member in struct:WebCore::SameSizeAsFontDescription
/macosx-10.9.5/dtrace-118.1/DTTk/Bin/
H A Dstacksize.d81 @sizes[execname] = quantize(this->stktop - this->stkptr);
91 printa(@sizes);
/macosx-10.9.5/dtrace-118.1/DTTk/Proc/
H A Dstacksize.d81 @sizes[execname] = quantize(this->stktop - this->stkptr);
91 printa(@sizes);
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DThemeMac.mm124 static LengthSize sizeFromNSControlSize(NSControlSize nsControlSize, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
126 IntSize controlSize = sizes[nsControlSize];
137 static LengthSize sizeFromFont(const Font& font, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
139 return sizeFromNSControlSize(controlSizeForFont(font), zoomedSize, zoomFactor, sizes);
142 static ControlSize controlSizeFromPixelSize(const IntSize* sizes, const IntSize& minZoomedSize, float zoomFactor)
144 if (minZoomedSize.width() >= static_cast<int>(sizes[NSRegularControlSize].width() * zoomFactor) &&
145 minZoomedSize.height() >= static_cast<int>(sizes[NSRegularControlSize].height() * zoomFactor))
147 if (minZoomedSize.width() >= static_cast<int>(sizes[NSSmallControlSize].width() * zoomFactor) &&
148 minZoomedSize.height() >= static_cast<int>(sizes[NSSmallControlSize].height() * zoomFactor))
153 static void setControlSize(NSCell* cell, const IntSize* sizes, cons
[all...]
/macosx-10.9.5/emacs-92/emacs/lib-src/
H A Dpop.c401 * message IDs, and a parallel one of sizes.
416 pop_list (server, message, IDs, sizes)
420 int **sizes;
442 *sizes = (int *) malloc ((how_many + 1) * sizeof (int));
443 if (! (*IDs && *sizes))
455 free ((char *) *sizes);
461 free ((char *) *sizes);
475 free ((char *) *sizes);
486 free ((char *) *sizes);
489 (*sizes)[
568 int *IDs, *sizes, bufsize, fromcount = 0, cp = 0; local
[all...]

Completed in 288 milliseconds

12345