HomeSort by: relevance | last modified time | path
    Searched defs:bcache_miss (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/arch/ia64/stand/common/
bcache.c 63 static bitstr_t *bcache_miss; variable in typeref:typename:bitstr_t *
92 bcache_miss = bit_alloc((bcache_nblks + 1) / 2);
93 if ((bcache_data == NULL) || (bcache_ctl == NULL) || (bcache_miss == NULL)) {
94 if (bcache_miss)
95 free(bcache_miss);
176 bit_set(bcache_miss, i); /* cache miss */
179 bit_clear(bcache_miss, i); /* cache hit */
189 if (bit_test(bcache_miss, i)) {
bcache.c 63 static bitstr_t *bcache_miss; variable in typeref:typename:bitstr_t *
92 bcache_miss = bit_alloc((bcache_nblks + 1) / 2);
93 if ((bcache_data == NULL) || (bcache_ctl == NULL) || (bcache_miss == NULL)) {
94 if (bcache_miss)
95 free(bcache_miss);
176 bit_set(bcache_miss, i); /* cache miss */
179 bit_clear(bcache_miss, i); /* cache hit */
189 if (bit_test(bcache_miss, i)) {
bcache.c 63 static bitstr_t *bcache_miss; variable in typeref:typename:bitstr_t *
92 bcache_miss = bit_alloc((bcache_nblks + 1) / 2);
93 if ((bcache_data == NULL) || (bcache_ctl == NULL) || (bcache_miss == NULL)) {
94 if (bcache_miss)
95 free(bcache_miss);
176 bit_set(bcache_miss, i); /* cache miss */
179 bit_clear(bcache_miss, i); /* cache hit */
189 if (bit_test(bcache_miss, i)) {

Completed in 31 milliseconds