Searched refs:SIZE (Results 1 - 25 of 133) sorted by relevance

123456

/macosx-10.10/WebCore-7600.1.25/platform/graphics/win/
H A DIntSizeWin.cpp33 IntSize::IntSize(const SIZE& s)
39 IntSize::operator SIZE() const
41 SIZE s = {m_width, m_height};
/macosx-10.10/swig-12/Lib/ocaml/
H A Dcstring.i13 /* %cstring_input_binary(TYPEMAP, SIZE)
19 %define %cstring_input_binary(TYPEMAP, SIZE)
20 %apply (char *STRING, int LENGTH) { (TYPEMAP, SIZE) };
47 * %cstring_chunk_output(TYPEMAP, SIZE)
59 %define %cstring_chunk_output(TYPEMAP,SIZE)
60 %typemap(ignore) TYPEMAP(char temp[SIZE]) {
64 $result = caml_list_append($result,caml_val_string_len($1,SIZE));
69 * %cstring_bounded_mutable(TYPEMAP, SIZE)
144 * %cstring_output_maxsize(TYPEMAP, SIZE)
154 %define %cstring_output_maxsize(TYPEMAP, SIZE)
[all...]
/macosx-10.10/ruby-106/ruby/benchmark/
H A Dbm_so_lists.rb4 SIZE = 10000
7 # create a list of integers (Li1) from 1 to SIZE
8 li1 = (1..SIZE).to_a
26 # check that first item is now SIZE
27 if li1[0] != SIZE then
28 p "not SIZE"
/macosx-10.10/swig-12/Lib/typemaps/
H A Dcstrings.swg20 /* %cstring_input_binary(TYPEMAP, SIZE)
31 %define Name ## _input_binary(TYPEMAP, SIZE)
32 %typemap(in,noblock=1,fragment=#SWIG_AsCharPtrAndSize) (TYPEMAP, SIZE)
36 %argument_fail(res, "(TYPEMAP, SIZE)", $symname, $argnum);
41 %typemap(freearg,noblock=1,match="in") (TYPEMAP, SIZE) {
75 * %cstring_chunk_output(TYPEMAP, SIZE)
87 %define Name ## _chunk_output(TYPEMAP,SIZE)
88 %typemap(in,noblock=1,numinputs=0) TYPEMAP(Char temp[SIZE]) {
93 %append_output(SWIG_FromCharPtrAndSize($1,SIZE));
100 * %cstring_bounded_mutable(TYPEMAP, SIZE)
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/vmalloc/
H A Dvmclear.c66 SIZE(tp) = size;
70 { SIZE(tp) |= BUSY|JUNK;
71 LINK(tp) = CACHE(vd)[C_INDEX(SIZE(tp))];
72 CACHE(vd)[C_INDEX(SIZE(tp))] = tp;
77 SIZE(tp) = BUSY;
H A Dvmbest.c91 if(SIZE(b) & (BUSY|JUNK|PFREE))
97 if(SIZE(b) < MAXTINY)
98 return vmonlist(TINY(vd)[INDEX(SIZE(b))], b);
117 if((SIZE(b)&BUSY) == 0 || (SIZE(b)&JUNK) == 0)
124 for(t = CACHE(vd)[C_INDEX(SIZE(b))]; t; t = LINK(t))
129 if(C_INDEX(SIZE(b)) < S_CACHE)
146 if(SIZE(node) & BITS)
150 if(SIZE(t) != SIZE(nod
[all...]
H A Dvmprivate.c97 { /**/ ASSERT((SIZE(bp)&~BITS) == 0);
100 if(!ISPFREE(SIZE(bp)) )
101 SIZE(bp) = size - sizeof(Head_t);
107 else REMOVE(vd,bp,INDEX(SIZE(bp)),tp,(*searchf));
108 SIZE(bp) += size;
115 SIZE(bp) += size;
119 SIZE(bp) = size - sizeof(Head_t);
142 SIZE(bp) = seg->baddr - (Vmuchar_t*)bp - 2*sizeof(Head_t);
159 seg->size = SIZE(bp);
165 SIZE(t
[all...]
H A Dvmstat.c91 { s = SIZE(b)&~BITS;
92 if(ISJUNK(SIZE(b)) || !ISBUSY(SIZE(b)))
110 b = (Block_t*)((Vmuchar_t*)DATA(b) + (SIZE(b)&~BITS) );
115 { if((s = seg->free ? (SIZE(seg->free) + sizeof(Head_t)) : 0) > 0)
126 st->n_free += (SIZE(seg->free)+sizeof(Head_t))/s;
H A Dvmpool.c76 (s = (SIZE(tp) & ~BITS) + sizeof(Head_t)) >= size )
81 { s = (SIZE(tp) & ~BITS) + sizeof(Head_t);
91 { SIZE(next) = POOLFREE;
99 { SIZE(next) = s - sizeof(Head_t);
143 if(SIZE(tp) == POOLFREE) /* may be a coincidence - make sure */
179 SIZE(bp) = POOLFREE;
265 if(seg->size == (s = SIZE(fp)&~BITS))
H A Dvmlast.c54 { if(!(tp = seg->free) || (SIZE(tp)+sizeof(Head_t)) < size)
72 if((s = SIZE(tp)) >= size)
74 SIZE(next) = s - size;
124 SIZE(fp) = ((Vmuchar_t*)BLOCK(seg->baddr) - (Vmuchar_t*)data) - sizeof(Head_t);
209 SIZE(BLOCK(seg->baddr)) = BUSY;
232 SIZE(tp) = s - sizeof(Head_t);
251 SIZE(tp) = (s - size) - sizeof(Head_t);
340 if(seg->size == (s = SIZE(fp)&~BITS))
397 SIZE(next) = s - sizeof(Head_t);
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/
H A Dsize.exp24 if {[which $SIZE] == 0} then {
25 perror "$SIZE does not exist"
30 send_user "Version [binutil_version $SIZE]"
48 set got [binutils_run $SIZE "$SIZEFLAGS $testfile"]
67 set got [binutils_run $SIZE "$SIZEFLAGS -A ${testfile}"]
/macosx-10.10/swig-12/Lib/python/
H A Dpybuffer.i3 /* %pybuffer_mutable_binary(TYPEMAP, SIZE)
15 %define %pybuffer_mutable_binary(TYPEMAP, SIZE)
16 %typemap(in) (TYPEMAP, SIZE)
21 %argument_fail(res, "(TYPEMAP, SIZE)", $symname, $argnum);
28 /* %pybuffer_mutable_string(TYPEMAP, SIZE)
47 %argument_fail(res, "(TYPEMAP, SIZE)", $symname, $argnum);
53 /* pybuffer_binary(TYPEMAP, SIZE)
67 %define %pybuffer_binary(TYPEMAP, SIZE)
68 %typemap(in) (TYPEMAP, SIZE)
73 %argument_fail(res, "(TYPEMAP, SIZE)",
[all...]
/macosx-10.10/awk-20/src/
H A Dmaketab.c109 #define SIZE (LASTTOKEN - FIRSTTOKEN + 1) macro
110 const char *table[SIZE];
111 char *names[SIZE];
124 for (i = SIZE; --i >= 0; )
131 printf("static char *printname[%d] = {\n", SIZE);
150 printf("\nCell *(*proctab[%d])(Node **, int) = {\n", SIZE);
151 for (i=0; i<SIZE; i++)
/macosx-10.10/Heimdal-398.1.2/base/
H A Dfuzzer.c42 #define SIZE(_array) (sizeof(_array) / sizeof((_array)[0])) macro
258 if (length < iteration / SIZE(interesting_u8))
261 memcpy(&data[iteration % SIZE(interesting_u8)], &interesting_u8[iteration / SIZE(interesting_u8)], 1);
275 if (length < 1 + (iteration / SIZE(interesting_u16)))
278 memcpy(&data[iteration % SIZE(interesting_u16)], &interesting_u16[iteration / SIZE(interesting_u16)], 2);
292 if (length < 3 + (iteration / SIZE(interesting_u32)))
295 memcpy(&data[iteration % SIZE(interesting_u32)], &interesting_u32[iteration / SIZE(interesting_u3
[all...]
/macosx-10.10/objc4-646/runtime/
H A Dobjc-sel-set.mm44 #define SIZE 27
46 static const uint32_t __objc_sel_set_capacities[SIZE+1] = {
52 static const uint32_t __objc_sel_set_buckets[SIZE] = { // powers of 2
62 #define SIZE 42
64 static const uint32_t __objc_sel_set_capacities[SIZE+1] = {
72 static const uint32_t __objc_sel_set_buckets[SIZE] = { // primes
132 if (SIZE <= idx) _objc_fatal("objc_sel_set failure");
152 if (SIZE <= idx) _objc_fatal("objc_sel_set failure");
/macosx-10.10/iodbc-42.5/iodbc/iodbcinst/
H A Dunicode.h117 #define OPL_W2A(XW, XA, SIZE) wcstombs((char *) XA, (wchar_t *) XW, SIZE)
118 #define OPL_A2W(XA, XW, SIZE) mbstowcs((wchar_t *) XW, (char *) XA, SIZE)
/macosx-10.10/OpenSSL098-52/src/crypto/bn/
H A Dexp.c7 #define SIZE 256 macro
17 int j,i,size=SIZE,num=NUM,mod=MOD;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/bn/
H A Dexp.c25 #define SIZE 256 macro
35 int j,i,size=SIZE,num=NUM,mod=MOD;
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/apps/actiweb/
H A DFormsWithState.xotcl67 <FONT SIZE='+1' COLOR='#000099'><B>Submission</B></font><br>
117 <FONT SIZE="+1" COLOR="#000099">
126 <FONT SIZE="+1">First Name:<BR></FONT>
129 VALUE="[my get FIRST_NAME]" SIZE=25 MAXLENGTH=30><BR>
132 <FONT SIZE="+1">Second Name:<BR>
135 VALUE="[my get SECOND_NAME]" SIZE=25 MAXLENGTH=30><BR>
155 <FONT SIZE="+1" COLOR="#000099"><B>Title and Autors</B></font><br>
161 <FONT SIZE="+1" >Title:<BR>
164 VALUE="[my get TITLE]" SIZE=25 MAXLENGTH=30><BR>
167 <FONT SIZE
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/opcodes/
H A Dh8300-dis.c96 switch (looking_for & SIZE)
148 if ((looking_for & SIZE) == L_16)
198 if ((x & SIZE) == L_3 || (x & SIZE) == L_3NZ)
214 switch (x & SIZE)
231 switch (x & SIZE)
279 if ((x & SIZE) == L_16 ||
280 (x & SIZE) == L_16U)
516 else if ((looking_for & SIZE) == L_5)
521 else if ((looking_for & SIZE)
[all...]
/macosx-10.10/vim-55/src/
H A Dgui_xmdlg.c94 SIZE, enumerator in enum:ListSpecifier
333 case SIZE:
384 if (fix != SIZE)
385 add_to_list(list[SIZE], wild, &count[SIZE]);
395 && match(data, SIZE, i))
404 && match(data, SIZE, i))
413 && match(data, SIZE, i))
419 if (fix != SIZE
425 add_to_list(list[SIZE], bu
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/compat/
H A Dtzdate.c29 #define SIZE 80 macro
37 char systime[SIZE];
38 char icutime[SIZE];
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebKitGraphics.h61 SIZE shadowOffset;
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/testsuite/config/
H A Ddefault.exp31 if ![info exists SIZE] then {
32 set SIZE [findfile $base_dir/size]
/macosx-10.10/groff-38/groff/src/preproc/eqn/
H A Deqn_tab.h14 #define SIZE 270 macro

Completed in 225 milliseconds

123456