Searched defs:cache (Results 1 - 10 of 10) sorted by relevance
| /PHP_TRUNK/ext/mbstring/libmbfl/filters/ |
| H A D | mbfilter_base64.c | 91 filter->cache = (c & 0xff) << 16; 94 filter->cache |= (c & 0xff) << 8; 106 n = filter->cache | (c & 0xff); 118 int status, cache, len; local 121 cache = filter->cache; 124 filter->cache = 0; 133 CK((*filter->output_function)(mbfl_base64_table[(cache >> 18) & 0x3f], filter->data)); 134 CK((*filter->output_function)(mbfl_base64_table[(cache >> 12) & 0x3f], filter->data)); 139 CK((*filter->output_function)(mbfl_base64_table[(cache >> 198 int status, cache; local [all...] |
| H A D | mbfilter_qprint.c | 78 filter->cache = c; 82 s = filter->cache; 83 filter->cache = c; 146 /* flush filter cache */ 149 filter->cache = 0; 182 filter->cache = c; 198 CK((*filter->output_function)(filter->cache, filter->data)); 201 n = hex2code_map[filter->cache] << 4 | m; 226 int status, cache; local 229 cache [all...] |
| H A D | mbfilter_utf7.c | 123 filter->cache = 0; 146 filter->cache |= n << 10; 150 filter->cache |= n << 4; 154 s = ((n >> 2) & 0xf) | (filter->cache & 0xffff); 159 filter->cache = s; 162 s |= (filter->cache & 0xfff0000) >> 6; 163 filter->cache = n; 172 filter->cache = n; 178 filter->cache |= n << 8; 182 filter->cache | 378 int status, cache; local [all...] |
| H A D | mbfilter_utf7imap.c | 96 filter->cache = 0; 119 filter->cache |= n << 10; 123 filter->cache |= n << 4; 127 s = ((n >> 2) & 0xf) | (filter->cache & 0xffff); 132 filter->cache = s; 135 s |= (filter->cache & 0xfff0000) >> 6; 136 filter->cache = n; 145 filter->cache = n; 151 filter->cache |= n << 8; 155 filter->cache | 339 int status, cache; local [all...] |
| /PHP_TRUNK/ext/mbstring/libmbfl/mbfl/ |
| H A D | mbfilter.c | 2680 int cache; member in struct:collector_htmlnumericentity_data 2752 pc->cache = c - 0x30; 2768 s = pc->cache; 2771 s = pc->cache*10 + c - 0x30; 2772 pc->cache = s; 2777 s = pc->cache; 2817 pc->cache = c - 0x30; 2821 pc->cache = c - 0x41 + 10; 2825 pc->cache = c - 0x61 + 10; 2844 s = pc->cache; [all...] |
| H A D | mbfl_convert.h | 50 int cache; member in struct:_mbfl_convert_filter
|
| /PHP_TRUNK/ext/imap/ |
| H A D | php_imap.c | 1050 GC_ELT message cache elements 1564 This function garbage collects (purges) the cache of entries of a specific type. */ 1647 MESSAGECACHE * cache = mail_elt (imap_le_struct->imap_stream, msgno); local 1649 tmp[0] = cache->recent ? (cache->seen ? 'R': 'N') : ' '; 1650 tmp[1] = (cache->recent | cache->seen) ? ' ' : 'U'; 1651 tmp[2] = cache->flagged ? 'F' : ' '; 1652 tmp[3] = cache->answered ? 'A' : ' '; 1653 tmp[4] = cache 2045 MESSAGECACHE *cache; local 2573 MESSAGECACHE * cache = mail_elt (imap_le_struct->imap_stream, msgno); local [all...] |
| /PHP_TRUNK/ext/sybase_ct/ |
| H A D | php_sybase_ct.c | 2192 zend_fcall_info_cache cache = empty_fcall_info_cache; local 2198 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f!|r", &fci, &cache, &sybase_link_index) == FAILURE) {
|
| /PHP_TRUNK/ext/soap/ |
| H A D | php_soap.h | 170 char cache; variable
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_alloc.c | 437 zend_mm_free_block *cache[ZEND_MM_NUM_BUCKETS]; member in struct:_zend_mm_heap 901 memset(heap->cache, 0, sizeof(heap->cache)); 937 if (heap->cache[i]) { 938 zend_mm_free_block *mm_block = heap->cache[i]; 967 heap->cache[i] = NULL; 1903 if (EXPECTED(heap->cache[index] != NULL)) { 1904 /* Get block from cache */ 1909 best_fit = heap->cache[index]; 1910 heap->cache[inde 2085 zend_mm_free_block **cache = &heap->cache[index]; local 2181 zend_mm_free_block **cache; local [all...] |
Completed in 54 milliseconds