Searched defs:cache (Results 1 - 10 of 10) sorted by relevance
| /PHP_5_3/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_5_3/ext/mbstring/libmbfl/mbfl/ |
| H A D | mbfilter.c | 2560 int cache; member in struct:collector_htmlnumericentity_data 2630 pc->cache = c - 0x30; 2646 s = pc->cache; 2649 s = pc->cache*10 + c - 0x30; 2650 pc->cache = s; 2655 s = pc->cache; 2723 s = pc->cache; 2746 pc->cache = 0; 2798 pc.cache = 0;
|
| H A D | mbfl_convert.h | 50 int cache; member in struct:_mbfl_convert_filter
|
| /PHP_5_3/ext/imap/ |
| H A D | php_imap.c | 1050 GC_ELT message cache elements 1572 This function garbage collects (purges) the cache of entries of a specific type. */ 1655 MESSAGECACHE * cache = mail_elt (imap_le_struct->imap_stream, msgno); local 1657 tmp[0] = cache->recent ? (cache->seen ? 'R': 'N') : ' '; 1658 tmp[1] = (cache->recent | cache->seen) ? ' ' : 'U'; 1659 tmp[2] = cache->flagged ? 'F' : ' '; 1660 tmp[3] = cache->answered ? 'A' : ' '; 1661 tmp[4] = cache 2053 MESSAGECACHE *cache; local 2581 MESSAGECACHE * cache = mail_elt (imap_le_struct->imap_stream, msgno); local [all...] |
| /PHP_5_3/ext/soap/ |
| H A D | php_soap.h | 163 char cache; variable
|
| /PHP_5_3/ext/sybase_ct/ |
| H A D | php_sybase_ct.c | 2197 zend_fcall_info_cache cache = empty_fcall_info_cache; local 2203 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f!|r", &fci, &cache, &sybase_link_index) == FAILURE) {
|
| /PHP_5_3/Zend/ |
| H A D | zend_alloc.c | 437 zend_mm_free_block *cache[ZEND_MM_NUM_BUCKETS]; member in struct:_zend_mm_heap 876 memset(heap->cache, 0, sizeof(heap->cache)); 911 if (heap->cache[i]) { 912 zend_mm_free_block *mm_block = heap->cache[i]; 941 heap->cache[i] = NULL; 1828 if (EXPECTED(heap->cache[index] != NULL)) { 1829 /* Get block from cache */ 1834 best_fit = heap->cache[index]; 1835 heap->cache[inde 2008 zend_mm_free_block **cache = &heap->cache[index]; local 2101 zend_mm_free_block **cache; local [all...] |
Completed in 40 milliseconds