index              62 examples/perfcounter/perf.h     int index;
index             185 examples/perfcounter/perf.h void init_perf_counter(PerfCounter *counter, PerfCounter *parent, unsigned int index, char *name, char *help, int counter_type, int record_type);
index              43 examples/perfcounter/perf_writer.c     make_key(key, NAME_LEN, obj.index, "inst");
index              57 examples/perfcounter/perf_writer.c     make_key(key, NAME_LEN, counter.index, NULL);
index              60 examples/perfcounter/perf_writer.c     make_key(key, NAME_LEN, counter.index + 1, NULL);
index              63 examples/perfcounter/perf_writer.c     make_key(key, NAME_LEN, counter.index, "rel");
index              68 examples/perfcounter/perf_writer.c 	make_key(key, NAME_LEN, counter.index, "type");
index             115 examples/perfcounter/perf_writer.c     make_key(key, NAME_LEN, counter.index, NULL);
index             173 examples/perfcounter/perf_writer_cpu.c 		      output_perf_instance(data->cpuInfo.cpuObjDesc.index,
index             182 examples/perfcounter/perf_writer_cpu.c 	      output_perf_instance(data->cpuInfo.cpuObjDesc.index,
index             215 examples/perfcounter/perf_writer_disk.c 		output_perf_instance(data->diskInfo.diskObjDesc.index,
index             206 examples/perfcounter/perf_writer_util.c 		       unsigned int index,
index             212 examples/perfcounter/perf_writer_util.c     counter->index = index;
index             224 examples/perfcounter/perf_writer_util.c 	    sprintf(counter->relationships, "c[%d]", parent->index);
index             227 examples/perfcounter/perf_writer_util.c 	    sprintf(counter->relationships, "i[%d]", parent->index);
index             129 lib/zlib/contrib/blast/blast.c     int index;          /* index of first code of length len in symbol table */
index             136 lib/zlib/contrib/blast/blast.c     code = first = index = 0;
index             147 lib/zlib/contrib/blast/blast.c                 return h->symbol[index + (code - first)];
index             149 lib/zlib/contrib/blast/blast.c             index += count;             /* else update for next length */
index             223 lib/zlib/contrib/puff/puff.c     int index;          /* index of first code of length len in symbol table */
index             225 lib/zlib/contrib/puff/puff.c     code = first = index = 0;
index             230 lib/zlib/contrib/puff/puff.c             return h->symbol[index + (code - first)];
index             231 lib/zlib/contrib/puff/puff.c         index += count;                 /* else update for next length */
index             251 lib/zlib/contrib/puff/puff.c     int index;          /* index of first code of length len in symbol table */
index             258 lib/zlib/contrib/puff/puff.c     code = first = index = 0;
index             269 lib/zlib/contrib/puff/puff.c                 return h->symbol[index + (code - first)];
index             271 lib/zlib/contrib/puff/puff.c             index += count;             /* else update for next length */
index             629 lib/zlib/contrib/puff/puff.c     int index;                          /* index of lengths[] */
index             647 lib/zlib/contrib/puff/puff.c     for (index = 0; index < ncode; index++)
index             648 lib/zlib/contrib/puff/puff.c         lengths[order[index]] = bits(s, 3);
index             649 lib/zlib/contrib/puff/puff.c     for (; index < 19; index++)
index             650 lib/zlib/contrib/puff/puff.c         lengths[order[index]] = 0;
index             657 lib/zlib/contrib/puff/puff.c     index = 0;
index             658 lib/zlib/contrib/puff/puff.c     while (index < nlen + ndist) {
index             664 lib/zlib/contrib/puff/puff.c             lengths[index++] = symbol;
index             668 lib/zlib/contrib/puff/puff.c                 if (index == 0) return -5;      /* no last length! */
index             669 lib/zlib/contrib/puff/puff.c                 len = lengths[index - 1];       /* last length */
index             676 lib/zlib/contrib/puff/puff.c             if (index + symbol > nlen + ndist)
index             679 lib/zlib/contrib/puff/puff.c                 lengths[index++] = len;
index              77 lib/zlib/examples/zran.c local void free_index(struct access *index)
index              79 lib/zlib/examples/zran.c     if (index != NULL) {
index              80 lib/zlib/examples/zran.c         free(index->list);
index              81 lib/zlib/examples/zran.c         free(index);
index              87 lib/zlib/examples/zran.c local struct access *addpoint(struct access *index, int bits,
index              93 lib/zlib/examples/zran.c     if (index == NULL) {
index              94 lib/zlib/examples/zran.c         index = malloc(sizeof(struct access));
index              95 lib/zlib/examples/zran.c         if (index == NULL) return NULL;
index              96 lib/zlib/examples/zran.c         index->list = malloc(sizeof(struct point) << 3);
index              97 lib/zlib/examples/zran.c         if (index->list == NULL) {
index              98 lib/zlib/examples/zran.c             free(index);
index             101 lib/zlib/examples/zran.c         index->size = 8;
index             102 lib/zlib/examples/zran.c         index->have = 0;
index             106 lib/zlib/examples/zran.c     else if (index->have == index->size) {
index             107 lib/zlib/examples/zran.c         index->size <<= 1;
index             108 lib/zlib/examples/zran.c         next = realloc(index->list, sizeof(struct point) * index->size);
index             110 lib/zlib/examples/zran.c             free_index(index);
index             113 lib/zlib/examples/zran.c         index->list = next;
index             117 lib/zlib/examples/zran.c     next = index->list + index->have;
index             125 lib/zlib/examples/zran.c     index->have++;
index             128 lib/zlib/examples/zran.c     return index;
index             144 lib/zlib/examples/zran.c     struct access *index;       /* access points being generated */
index             163 lib/zlib/examples/zran.c     index = NULL;               /* will be allocated by first addpoint() */
index             211 lib/zlib/examples/zran.c                 index = addpoint(index, strm.data_type & 7, totin,
index             213 lib/zlib/examples/zran.c                 if (index == NULL) {
index             224 lib/zlib/examples/zran.c     index = realloc(index, sizeof(struct point) * index->have);
index             225 lib/zlib/examples/zran.c     index->size = index->have;
index             226 lib/zlib/examples/zran.c     *built = index;
index             227 lib/zlib/examples/zran.c     return index->size;
index             232 lib/zlib/examples/zran.c     if (index != NULL)
index             233 lib/zlib/examples/zran.c         free_index(index);
index             244 lib/zlib/examples/zran.c local int extract(FILE *in, struct access *index, off_t offset,
index             258 lib/zlib/examples/zran.c     here = index->list;
index             259 lib/zlib/examples/zran.c     ret = index->have;
index             354 lib/zlib/examples/zran.c     struct access *index;
index             369 lib/zlib/examples/zran.c     len = build_index(in, SPAN, &index);
index             390 lib/zlib/examples/zran.c     offset = (index->list[index->have - 1].out << 1) / 3;
index             391 lib/zlib/examples/zran.c     len = extract(in, index, offset, buf, CHUNK);
index             401 lib/zlib/examples/zran.c     free_index(index);
index             270 source3/client/cifs.upcall.c 		pos = index(tkn, ';');
index             351 source3/client/cifs.upcall.c 		keyend = index(keyend+1, ';');
index             186 source3/include/smbldap.h 	int index;
index            1489 source3/lib/system.c 	int retval = 0, index;
index            1503 source3/lib/system.c 	    for (index = 0; index < al->al_count; index++) {
index            1504 source3/lib/system.c 		ae = ATTR_ENTRY(attr_buffer, index);
index            1529 source3/lib/system.c 		for (index = 0; index < al->al_count; index++) {
index            1530 source3/lib/system.c 		    ae = ATTR_ENTRY(attr_buffer, index);
index              29 source3/nmbd/nmbd_processlogon.c         uint32 index;
index            3369 source3/passdb/pdb_ldap.c 	ldap_state->index = 0;
index            3397 source3/passdb/pdb_ldap.c 		ldap_state->index++;
index             557 source3/registry/reg_backend_printing.c 	int index;	
index             588 source3/registry/reg_backend_printing.c 			return printer_values_map[i].index;
index             616 source3/registry/reg_perfcount.c 	begin = index(buf, '[');
index             617 source3/registry/reg_perfcount.c 	end = index(buf, ']');
index             623 source3/registry/reg_perfcount.c 		stop = index(start, ',');
index            3007 source4/heimdal/lib/hx509/cert.c     unsigned int index;
index            3049 source4/heimdal/lib/hx509/cert.c 	stats[i].index = i;
index            3086 source4/heimdal/lib/hx509/cert.c 	if (stats[i].index < sizeof(statname)/sizeof(statname[0]))
index            3087 source4/heimdal/lib/hx509/cert.c 	    rtbl_add_column_entry_by_id (t, 0, statname[stats[i].index]);
index            3089 source4/heimdal/lib/hx509/cert.c 	    snprintf(str, sizeof(str), "%d", stats[i].index);
index              88 source4/heimdal/lib/krb5/config_file_netinfo.c 	ni_index index;
index              98 source4/heimdal/lib/krb5/config_file_netinfo.c 	index = ni_proplist_match(pl, "name", NULL);
index             109 source4/heimdal/lib/krb5/config_file_netinfo.c 	b->name = ni_name_dup(pl.nipl_val[index].nip_val.ninl_val[0]);
index             160 source4/heimdal/lib/krb5/krbhst.c     struct krb5_krbhst_info *hosts, **index, **end;
index             166 source4/heimdal/lib/krb5/krbhst.c     return kd->index == &kd->hosts;
index             366 source4/heimdal/lib/krb5/krbhst.c     struct krb5_krbhst_info *hi = *kd->index;
index             369 source4/heimdal/lib/krb5/krbhst.c 	kd->index = &(*kd->index)->next;
index             793 source4/heimdal/lib/krb5/krbhst.c     kd->end = kd->index = &kd->hosts;
index             892 source4/heimdal/lib/krb5/krbhst.c     handle->index = &handle->hosts;
index            1342 source4/kdc/hdb-samba4.c 	int index;
index            1367 source4/kdc/hdb-samba4.c 	if (priv->index < priv->count) {
index            1370 source4/kdc/hdb-samba4.c 					priv->msgs[priv->index++], 
index            1411 source4/kdc/hdb-samba4.c 	priv->index = 0;
index             513 source4/torture/rpc/schannel.c 	int index;
index             551 source4/torture/rpc/schannel.c 	torture_comment(s->tctx, "conn[%u]: %s\n", conn->index, nt_errstr(s->error));
index             716 source4/torture/rpc/schannel.c 		s->conns[i].index = i;