Searched refs:count (Results 251 - 275 of 5314) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/WebKit-7600.1.25/win/
H A DWebCoreStatistics.cpp101 /* [retval][out] */ UINT* count)
103 if (!count)
107 *count = (UINT)JSDOMWindow::commonVM().heap.objectCount();
112 /* [retval][out] */ UINT* count)
114 if (!count)
118 *count = (UINT)JSDOMWindow::commonVM().heap.globalObjectCount();
123 /* [retval][out] */ UINT* count)
125 if (!count)
129 *count = (UINT)JSDOMWindow::commonVM().heap.protectedObjectCount();
134 /* [retval][out] */ UINT* count)
100 javaScriptObjectsCount( UINT* count) argument
111 javaScriptGlobalObjectsCount( UINT* count) argument
122 javaScriptProtectedObjectsCount( UINT* count) argument
133 javaScriptProtectedGlobalObjectsCount( UINT* count) argument
178 iconPageURLMappingCount( UINT* count) argument
187 iconRetainedPageURLCount( UINT *count) argument
196 iconRecordCount( UINT *count) argument
205 iconsWithDataCount( UINT *count) argument
214 cachedFontDataCount( UINT *count) argument
223 cachedFontDataInactiveCount( UINT *count) argument
238 glyphPageCount( UINT *count) argument
326 cachedPageCount(INT* count) argument
335 cachedFrameCount(INT* count) argument
[all...]
H A DWebCoreStatistics.h46 /* [retval][out] */ UINT *count);
48 /* [retval][out] */ UINT *count);
50 /* [retval][out] */ UINT *count);
52 /* [retval][out] */ UINT *count);
56 /* [retval][out] */ UINT *count);
58 /* [retval][out] */ UINT *count);
60 /* [retval][out] */ UINT *count);
62 /* [retval][out] */ UINT *count);
64 /* [retval][out] */ UINT *count);
66 /* [retval][out] */ UINT *count);
[all...]
/macosx-10.10.1/libiconv-42/libiconv/lib/
H A Diso2022_jp3.h55 int count = 0; local
60 if (n < count+3)
65 s += 3; count += 3;
66 if (n < count+1)
72 s += 3; count += 3;
73 if (n < count+1)
79 s += 3; count += 3;
80 if (n < count+1)
90 s += 3; count += 3;
91 if (n < count
262 int count = 0; local
499 int count = local
[all...]
H A Diso2022_cn.h58 int count = 0; local
63 if (n < count+4)
69 s += 4; count += 4;
70 if (n < count+1)
76 s += 4; count += 4;
77 if (n < count+1)
85 s += 4; count += 4;
86 if (n < count+1)
104 return count+4;
116 s++; count
192 int count = (state1 == STATE_ASCII ? 1 : 2); local
215 int count = (state2 == STATE2_DESIGNATED_GB2312 ? 0 : 4) + (state1 == STATE_TWOBYTE ? 0 : 1) + 2; local
245 int count = (state2 == STATE2_DESIGNATED_CNS11643_1 ? 0 : 4) + (state1 == STATE_TWOBYTE ? 0 : 1) + 2; local
270 int count = (state3 == STATE3_DESIGNATED_CNS11643_2 ? 0 : 4) + 4; local
[all...]
H A Diso2022_kr.h57 int count = 0; local
62 if (n < count+4)
68 s += 4; count += 4;
69 if (n < count+1)
81 s++; count++;
82 if (n < count+1)
88 s++; count++;
89 if (n < count+1)
108 return count+1;
112 if (n < count
147 int count = (state1 == STATE_ASCII ? 1 : 2); local
169 int count = (state2 == STATE2_DESIGNATED_KSC5601 ? 0 : 4) + (state1 == STATE_TWOBYTE ? 0 : 1) + 2; local
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Duvectr64.cpp25 count(0),
34 count(0),
72 if (ensureCapacity(other.count, ec)) {
73 setSize(other.count);
74 for (int32_t i=0; i<other.count; ++i) {
83 if (count != other.count) return FALSE;
84 for (i=0; i<count; ++i) {
94 if (0 <= index && index < count) {
101 // must have 0 <= index <= count
[all...]
H A Duvectr64.h60 int32_t count; member in class:UVector64
125 inline UBool isEmpty(void) const { return count == 0; }
211 return (0 <= index && index < count) ? elements[index] : 0;
216 if (ensureCapacity(count + 1, status)) {
217 elements[count] = elem;
218 count++;
223 if (ensureCapacity(count+size, status) == FALSE) {
226 int64_t *rp = elements+count;
227 count += size;
232 U_ASSERT(count >
[all...]
H A Duvectr32.cpp28 count(0),
37 count(0),
75 if (ensureCapacity(other.count, ec)) {
76 setSize(other.count);
77 for (int32_t i=0; i<other.count; ++i) {
86 if (count != other.count) return FALSE;
87 for (i=0; i<count; ++i) {
97 if (0 <= index && index < count) {
104 // must have 0 <= index <= count
[all...]
H A Duvector.cpp31 count(0),
41 count(0),
51 count(0),
61 count(0),
97 if (ensureCapacity(other.count, ec)) {
98 setSize(other.count, ec);
100 for (int32_t i=0; i<other.count; ++i) {
113 if (count != other.count) return FALSE;
116 for (i=0; i<count;
[all...]
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A DtclBinary.c27 #define BINARY_NOCOUNT -2 /* No count was specified in format. */
145 * string representation. The returned object has a ref count of 0.
201 * string representation. The returned object has a ref count of 0.
581 int count; /* Count associated with current format
631 if (!GetFormatSpec(&format, &cmd, &count, &flags)) {
642 * For string-type specifiers, the count corresponds to the
649 if (count == BINARY_ALL) {
650 Tcl_GetByteArrayFromObj(objv[arg], &count);
651 } else if (count == BINARY_NOCOUNT) {
652 count
572 int count; /* Count associated with current format local
[all...]
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A DtclBinary.c26 #define BINARY_NOCOUNT -2 /* No count was specified in format. */
138 * initial string representation. The returned object has a ref count
196 * initial string representation. The returned object has a ref count
586 int count; /* Count associated with current format
633 if (!GetFormatSpec(&format, &cmd, &count)) {
644 * For string-type specifiers, the count corresponds
651 if (count == BINARY_ALL) {
652 Tcl_GetByteArrayFromObj(objv[arg], &count);
653 } else if (count == BINARY_NOCOUNT) {
654 count
577 int count; /* Count associated with current format local
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/dev/dtrace/
H A Dblist.c132 static daddr_t blst_leaf_alloc(blmeta_t *scan, daddr_t blk, int count);
134 daddr_t count, daddr_t radix, int skip);
135 static void blst_leaf_free(blmeta_t *scan, daddr_t relblk, int count);
136 static void blst_meta_free(blmeta_t *scan, daddr_t freeBlk, daddr_t count,
139 daddr_t skip, blist_t dest, daddr_t count);
141 int skip, daddr_t count);
220 blist_alloc(blist_t bl, daddr_t count) argument
226 blk = blst_leaf_alloc(bl->bl_root, 0, count);
228 blk = blst_meta_alloc(bl->bl_root, 0, count,
231 bl->bl_free -= count;
243 blist_free(blist_t bl, daddr_t blkno, daddr_t count) argument
264 blist_resize(blist_t *pbl, daddr_t count, int freenew) argument
318 blst_leaf_alloc(blmeta_t *scan, daddr_t blk, int count) argument
395 blst_meta_alloc(blmeta_t *scan, daddr_t blk, daddr_t count, daddr_t radix, int skip) argument
477 blst_leaf_free(blmeta_t *scan, daddr_t blk, int count) argument
518 blst_meta_free(blmeta_t *scan, daddr_t freeBlk, daddr_t count, daddr_t radix, int skip, daddr_t blk) argument
606 blst_copy(blmeta_t *scan, daddr_t blk, daddr_t radix, daddr_t skip, blist_t dest, daddr_t count) argument
703 blst_radix_init(blmeta_t *scan, daddr_t radix, int skip, daddr_t count) argument
878 daddr_t count = 0; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_cryptkit/
H A DckSHA1_priv.c71 #define expand(count) { \
72 W[count] = W[count - 3] ^ W[count - 8] ^ W[count - 14] ^ W[count - 16]; \
73 W[count] = S(1, W[count]); \
78 #define subRound1(count) \
80 temp = S( 5, A ) + f1( B, C, D ) + E + W[ count ]
258 shsUpdate( SHS_INFO *shsInfo, const BYTE *buffer, int count) argument
287 int count; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cryptkit/lib/
H A DckSHA1_priv.c71 #define expand(count) { \
72 W[count] = W[count - 3] ^ W[count - 8] ^ W[count - 14] ^ W[count - 16]; \
73 W[count] = S(1, W[count]); \
78 #define subRound1(count) \
80 temp = S( 5, A ) + f1( B, C, D ) + E + W[ count ]
258 shsUpdate( SHS_INFO *shsInfo, const BYTE *buffer, int count) argument
287 int count; local
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/cspxutils/hashTime/
H A DSHA1_priv.c67 #define expand(count) { \
68 W[count] = W[count - 3] ^ W[count - 8] ^ W[count - 14] ^ W[count - 16]; \
69 W[count] = S(1, W[count]); \
74 #define subRound1(count) \
76 temp = S( 5, A ) + f1( B, C, D ) + E + W[ count ]
225 int count; local
250 shsUpdate( SHS_INFO *shsInfo, const BYTE *buffer, int count) argument
279 int count; local
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/cspxutils/hashTimeSA/
H A DSHA1_priv.c67 #define expand(count) { \
68 W[count] = W[count - 3] ^ W[count - 8] ^ W[count - 14] ^ W[count - 16]; \
69 W[count] = S(1, W[count]); \
74 #define subRound1(count) \
76 temp = S( 5, A ) + f1( B, C, D ) + E + W[ count ]
227 int count; local
252 shsUpdate( SHS_INFO *shsInfo, const BYTE *buffer, int count) argument
281 int count; local
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/perl/BerkeleyDB/t/
H A Ddestroy.t54 my $count = 0 ;
57 ++ $count ;
59 ok 9, $count == 3 ;
66 $count = 0 ;
70 ++ $count ;
72 ok 12, $count == 0 ;
90 my $count = 0 ;
94 ++ $count ;
96 ok 15, $count == 0 ;
/macosx-10.10.1/BerkeleyDB-21/db/test/
H A Dtxn010.tcl24 for { set count 0 } { $count < 100 } { incr count } {
27 [$db put -txn $t "key_a_$count" "data"] 0
36 for { set count 0 } { $count < 5 } {incr count } {
48 "quiescent: put" [$db put -txn $t "key_b_$count" "data"] 0
59 for { set count 0 } { $count <
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/bf/
H A Dbfspeed.c176 long count; local
196 count=10;
201 count*=2;
203 for (i=count; i; i--)
207 ca=count/512;
208 cb=count;
209 cc=count*8/BUFSIZE+1;
211 #define COND(d) (count != (d))
215 #define COUNT(d) (count)
222 for (count
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/cast/
H A Dcast_spd.c176 long count; local
196 count=10;
201 count*=2;
203 for (i=count; i; i--)
207 ca=count/512;
208 cb=count;
209 cc=count*8/BUFSIZE+1;
211 #define COND(d) (count != (d))
215 #define COUNT(d) (count)
222 for (count
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/rc2/
H A Drc2speed.c176 long count; local
196 count=10;
201 count*=2;
203 for (i=count; i; i--)
207 ca=count/512;
208 cb=count;
209 cc=count*8/BUFSIZE+1;
211 #define COND(d) (count != (d))
215 #define COUNT(d) (count)
222 for (count
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/rc5/
H A Drc5speed.c176 long count; local
196 count=10;
201 count*=2;
203 for (i=count; i; i--)
207 ca=count/512;
208 cb=count;
209 cc=count*8/BUFSIZE+1;
211 #define COND(d) (count != (d))
215 #define COUNT(d) (count)
222 for (count
[all...]
/macosx-10.10.1/dcerpc-61/dcerpc/ncklib/
H A Dtwr_ip.c140 ** structure (includes the floor count in the
171 unsigned32 count,
239 twr_t_length = TWR_C_TOWER_FLR_COUNT_SIZE; /* to store floor count */
241 for ( count = 0; count < floor_count; count++ )
244 twr_t_length += related_data_size[count];
288 for ( count = 0; count < floor_count; count
170 unsigned32 count, local
388 unsigned16 count, local
[all...]
H A Dtwr_np.c146 ** structure (includes the floor count in the
176 unsigned32 count,
233 twr_t_length = TWR_C_TOWER_FLR_COUNT_SIZE; /* to store floor count */
235 for ( count = 0; count < floor_count; count++ )
238 twr_t_length += related_data_size[count];
282 for ( count = 0; count < floor_count; count
175 unsigned32 count, local
388 unsigned16 count, local
[all...]
H A Dtwr_uxd.c139 ** structure (includes the floor count in the
169 unsigned32 count,
214 twr_t_length = TWR_C_TOWER_FLR_COUNT_SIZE; /* to store floor count */
216 for ( count = 0; count < floor_count; count++ )
219 twr_t_length += related_data_size[count];
263 for ( count = 0; count < floor_count; count
168 unsigned32 count, local
363 unsigned16 count, local
[all...]

Completed in 362 milliseconds

<<11121314151617181920>>