Lines Matching refs:n
38 uint32_t n = 0; in handle_get() local
46 for (n = 1; n < db->max_ptrs; n++) { in handle_get()
47 if (!db->ptrs[n]) { in handle_get()
48 db->ptrs[n] = ptr; in handle_get()
49 return n; in handle_get()
68 db->ptrs[n] = ptr; in handle_get()
69 return n; in handle_get()
110 uint32_t n = 0; in handle_lookup_handle() local
113 for (n = 1; n < db->max_ptrs; n++) in handle_lookup_handle()
114 if (db->ptrs[n] == ptr) in handle_lookup_handle()
115 return n; in handle_lookup_handle()