Searched defs:index (Results 1 - 16 of 16) sorted by relevance

/bind-9.6-ESV-R11/lib/isc/
H A Dresult.c175 int index; local
186 index = (int)(result - table->base);
187 default_text = table->text[index];
189 * Note: we use 'index + 1' as the message number
190 * instead of index because isc_msgcat_get() requires
194 index + 1, default_text);
H A Dheap.c42 * not 0-based. The parent is index/2, and the left-child is index*2.
43 * The right child is index*2+1.
72 isc_heapindex_t index; member in struct:isc_heap
77 isc_heapindex_t index, unsigned int size_increment,
99 heap->index = index;
153 if (heap->index != NULL)
154 (heap->index)(heap->array[i], i);
157 if (heap->index !
76 isc_heap_create(isc_mem_t *mctx, isc_heapcompare_t compare, isc_heapindex_t index, unsigned int size_increment, isc_heap_t **heapp) argument
206 isc_heap_delete(isc_heap_t *heap, unsigned int index) argument
231 isc_heap_increased(isc_heap_t *heap, unsigned int index) argument
239 isc_heap_decreased(isc_heap_t *heap, unsigned int index) argument
247 isc_heap_element(isc_heap_t *heap, unsigned int index) argument
[all...]
H A Dtimer.c76 unsigned int index; member in struct:isc_timer
166 if (timer->index > 0) {
174 isc_heap_increased(manager->heap, timer->index);
177 isc_heap_decreased(manager->heap, timer->index);
229 if (timer->index == 1 && signal_ok) {
236 if (timer->index == 1 &&
256 if (timer->index > 0) {
258 if (timer->index == 1)
261 isc_heap_delete(manager->heap, timer->index);
262 timer->index
757 set_index(void *what, unsigned int index) argument
[all...]
/bind-9.6-ESV-R11/lib/dns/
H A Dnsec.c46 set_bit(unsigned char *array, unsigned int index, unsigned int bit) { argument
49 shift = 7 - (index % 8);
53 array[index / 8] |= mask;
55 array[index / 8] &= (~mask & 0xFF);
59 bit_isset(unsigned char *array, unsigned int index) { argument
62 byte = array[index / 8];
63 shift = 7 - (index % 8);
H A Dnsec3.c54 set_bit(unsigned char *array, unsigned int index, unsigned int bit) { argument
57 shift = 7 - (index % 8);
61 array[index / 8] |= mask;
63 array[index / 8] &= (~mask & 0xFF);
67 bit_isset(unsigned char *array, unsigned int index) { argument
70 byte = array[index / 8];
71 shift = 7 - (index % 8);
H A Djournal.c51 * \li The index. This is an unordered array of index entries
54 * transactions. The index entries are used as hints to
56 * serial number. Unused index entries have an "offset"
57 * field of zero. The size of the index can vary between
74 * to from the header or index. They may be preceded
180 * and end of the journal, and in the journal index to locate
214 /*% Number of index entries following the header. */
306 unsigned char *rawindex; /*%< In-core buffer for journal index in on-disk format */
307 journal_pos_t *index; /* member in struct:dns_journal
[all...]
H A Drbtdb.c779 * This function sets the heap index into the header.
782 set_index(void *what, unsigned int index) { argument
785 h->heap_index = index;
H A Dzone.c4282 set_bit(unsigned char *array, unsigned int index) { argument
4285 shift = 7 - (index % 8);
4288 array[index / 8] |= mask;
/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Dio.cpp290 impl::muxer::read_one(const size_t index, const int fd, std::string& accum, argument
304 line_callback(index, line);
H A Dio_test.cpp325 void line_callback(const size_t index, const std::string& line) argument
332 //std::cout << "line_callback(" << index << ", " << line << ")\n";
334 switch (index) {
H A Dtest-program.cpp707 line_callback(const size_t index, const std::string& line) argument
709 switch (index) {
/bind-9.6-ESV-R11/contrib/sdb/ldap/
H A Dldapdb.c81 void *index; member in struct:ldapdb_entry
88 const void *index, size_t size) {
90 if (stack->size == size && !memcmp(stack->index, index, size))
133 free(threaddata->index);
136 free(conndata->index);
157 threaddata->index = malloc(sizeof(threadid));
158 if (threaddata->index == NULL) {
162 *(unsigned long *)threaddata->index = threadid;
181 conndata->index
87 ldapdb_find(struct ldapdb_entry *stack, const void *index, size_t size) argument
[all...]
/bind-9.6-ESV-R11/bin/named/
H A Dstatschannel.c483 int i, index; local
505 index = indices[i];
506 value = values[index];
515 value, desc[index]);
530 desc[index]));
539 desc[index]));
H A Dupdate.c1737 set_bit(unsigned char *array, unsigned int index) { argument
1740 shift = 7 - (index % 8);
1743 array[index / 8] |= bit;
/bind-9.6-ESV-R11/bin/win32/BINDInstall/
H A DBINDInstallDlg.cpp234 size_t index = dptr - fptr; local
235 strncpy(dirname, filename, index);
236 dirname[index] = '\0';
/bind-9.6-ESV-R11/contrib/queryperf/
H A Dqueryperf.c1166 unsigned int index, num_directives; local
1173 for (index = 0; index < num_directives; index++) {
1174 if (strcmp(dir, directives[index]) == 0)
1175 return (dir_values[index]);
1210 if (index(WHITESPACE, *config_change_desc) != NULL) {
1349 unsigned int num_types, index; local
1373 for (index = 0; (index < num_type
[all...]

Completed in 100 milliseconds