head 183 lib/zlib/deflate.c match_head = s->head[s->ins_h], \
head 184 lib/zlib/deflate.c s->head[s->ins_h] = (Pos)(str))
head 188 lib/zlib/deflate.c match_head = s->prev[(str) & s->w_mask] = s->head[s->ins_h], \
head 189 lib/zlib/deflate.c s->head[s->ins_h] = (Pos)(str))
head 197 lib/zlib/deflate.c s->head[s->hash_size-1] = NIL; \
head 198 lib/zlib/deflate.c zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
head 286 lib/zlib/deflate.c s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
head 294 lib/zlib/deflate.c if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL ||
head 390 lib/zlib/deflate.c int ZEXPORT deflateSetHeader (strm, head)
head 392 lib/zlib/deflate.c gz_headerp head;
head 396 lib/zlib/deflate.c strm->state->gzhead = head;
head 876 lib/zlib/deflate.c TRY_FREE(strm, strm->state->head);
head 919 lib/zlib/deflate.c ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
head 923 lib/zlib/deflate.c if (ds->window == Z_NULL || ds->prev == Z_NULL || ds->head == Z_NULL ||
head 931 lib/zlib/deflate.c zmemcpy(ds->head, ss->head, ds->hash_size * sizeof(Pos));
head 1308 lib/zlib/deflate.c p = &s->head[n];
head 134 lib/zlib/deflate.h Posf *head; /* Heads of the hash chains or NIL. */
head 117 lib/zlib/inflate.c state->head = Z_NULL;
head 604 lib/zlib/inflate.c if (state->head != Z_NULL)
head 605 lib/zlib/inflate.c state->head->done = -1;
head 647 lib/zlib/inflate.c if (state->head != Z_NULL)
head 648 lib/zlib/inflate.c state->head->text = (int)((hold >> 8) & 1);
head 654 lib/zlib/inflate.c if (state->head != Z_NULL)
head 655 lib/zlib/inflate.c state->head->time = hold;
head 661 lib/zlib/inflate.c if (state->head != Z_NULL) {
head 662 lib/zlib/inflate.c state->head->xflags = (int)(hold & 0xff);
head 663 lib/zlib/inflate.c state->head->os = (int)(hold >> 8);
head 672 lib/zlib/inflate.c if (state->head != Z_NULL)
head 673 lib/zlib/inflate.c state->head->extra_len = (unsigned)hold;
head 677 lib/zlib/inflate.c else if (state->head != Z_NULL)
head 678 lib/zlib/inflate.c state->head->extra = Z_NULL;
head 685 lib/zlib/inflate.c if (state->head != Z_NULL &&
head 686 lib/zlib/inflate.c state->head->extra != Z_NULL) {
head 687 lib/zlib/inflate.c len = state->head->extra_len - state->length;
head 688 lib/zlib/inflate.c zmemcpy(state->head->extra + len, next,
head 689 lib/zlib/inflate.c len + copy > state->head->extra_max ?
head 690 lib/zlib/inflate.c state->head->extra_max - len : copy);
head 708 lib/zlib/inflate.c if (state->head != Z_NULL &&
head 709 lib/zlib/inflate.c state->head->name != Z_NULL &&
head 710 lib/zlib/inflate.c state->length < state->head->name_max)
head 711 lib/zlib/inflate.c state->head->name[state->length++] = len;
head 719 lib/zlib/inflate.c else if (state->head != Z_NULL)
head 720 lib/zlib/inflate.c state->head->name = Z_NULL;
head 729 lib/zlib/inflate.c if (state->head != Z_NULL &&
head 730 lib/zlib/inflate.c state->head->comment != Z_NULL &&
head 731 lib/zlib/inflate.c state->length < state->head->comm_max)
head 732 lib/zlib/inflate.c state->head->comment[state->length++] = len;
head 740 lib/zlib/inflate.c else if (state->head != Z_NULL)
head 741 lib/zlib/inflate.c state->head->comment = Z_NULL;
head 753 lib/zlib/inflate.c if (state->head != Z_NULL) {
head 754 lib/zlib/inflate.c state->head->hcrc = (int)((state->flags >> 9) & 1);
head 755 lib/zlib/inflate.c state->head->done = 1;
head 1211 lib/zlib/inflate.c int ZEXPORT inflateGetHeader(strm, head)
head 1213 lib/zlib/inflate.c gz_headerp head;
head 1223 lib/zlib/inflate.c state->head = head;
head 1224 lib/zlib/inflate.c head->done = 0;
head 86 lib/zlib/inflate.h gz_headerp head; /* where to save gzip header information */
head 686 lib/zlib/zlib.h gz_headerp head));
head 832 lib/zlib/zlib.h gz_headerp head));
head 817 source3/client/client.c char *head = talloc_strdup(ctx, do_list_queue_head());
head 819 source3/client/client.c if (!head) {
head 825 source3/client/client.c if ( !cli_resolve_path(ctx, "", auth_info, cli, head, &targetcli, &targetpath ) ) {
head 826 source3/client/client.c d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
head 853 source3/client/client.c TALLOC_FREE(head);
head 62 source3/modules/perfcount_test.c struct perfcount_test_counter *head;
head 74 source3/modules/perfcount_test.c for (head = g_list[ptc->op]; head != NULL; head = head->next) {
head 75 source3/modules/perfcount_test.c if ((ptc->sub_op == head->sub_op) &&
head 76 source3/modules/perfcount_test.c (ptc->ioctl == head->ioctl)) {
head 77 source3/modules/perfcount_test.c head->bytes_in += ptc->bytes_in;
head 78 source3/modules/perfcount_test.c head->bytes_out += ptc->bytes_out;
head 79 source3/modules/perfcount_test.c head->count++;
head 169 source3/modules/perfcount_test.c struct perfcount_test_counter *head;
head 180 source3/modules/perfcount_test.c for (head = g_list[i]; head != NULL; head = head->next) {
head 181 source3/modules/perfcount_test.c perfcount_test_dump_counter(head, 0);
head 182 source3/modules/perfcount_test.c head->prev = NULL;
head 183 source3/modules/perfcount_test.c SAFE_FREE(head->prev);
head 185 source3/modules/perfcount_test.c SAFE_FREE(head);
head 273 source3/smbd/vfs.c struct vfs_fsp_data *head;
head 275 source3/smbd/vfs.c for (head = fsp->vfs_extension; head; head = head->next) {
head 276 source3/smbd/vfs.c if (head->owner == handle) {
head 277 source3/smbd/vfs.c return head;
head 286 source3/smbd/vfs.c struct vfs_fsp_data *head;
head 288 source3/smbd/vfs.c head = (struct vfs_fsp_data *)vfs_memctx_fsp_extension(handle, fsp);
head 289 source3/smbd/vfs.c if (head != NULL) {
head 290 source3/smbd/vfs.c return EXT_DATA_AREA(head);
head 308 source3/web/cgi.c const char *head = "Content-Type: text/html\r\n\r\n<HTML><BODY><H1>SWAT installation Error</H1>\n";
head 313 source3/web/cgi.c head, tail);
head 319 source3/web/cgi.c printf("%sCannot find user %s<br>%s\n", head, user, tail);
head 327 source3/web/cgi.c head, user, (int)geteuid(), (int)getuid(), tail);
head 576 source4/client/client.c char *head;
head 577 source4/client/client.c head = do_list_queue_head();
head 578 source4/client/client.c smbcli_list(ctx->cli->tree, head, attribute, do_list_helper, ctx);
head 47 source4/heimdal/lib/asn1/asn1_queue.h #define ASN1_TAILQ_HEAD_INITIALIZER(head) \
head 48 source4/heimdal/lib/asn1/asn1_queue.h { NULL, &(head).tqh_first }
head 59 source4/heimdal/lib/asn1/asn1_queue.h #define QUEUEDEBUG_ASN1_TAILQ_INSERT_HEAD(head, elm, field) \
head 60 source4/heimdal/lib/asn1/asn1_queue.h if ((head)->tqh_first && \
head 61 source4/heimdal/lib/asn1/asn1_queue.h (head)->tqh_first->field.tqe_prev != &(head)->tqh_first) \
head 62 source4/heimdal/lib/asn1/asn1_queue.h panic("ASN1_TAILQ_INSERT_HEAD %p %s:%d", (head), __FILE__, __LINE__);
head 63 source4/heimdal/lib/asn1/asn1_queue.h #define QUEUEDEBUG_ASN1_TAILQ_INSERT_TAIL(head, elm, field) \
head 64 source4/heimdal/lib/asn1/asn1_queue.h if (*(head)->tqh_last != NULL) \
head 65 source4/heimdal/lib/asn1/asn1_queue.h panic("ASN1_TAILQ_INSERT_TAIL %p %s:%d", (head), __FILE__, __LINE__);
head 73 source4/heimdal/lib/asn1/asn1_queue.h #define QUEUEDEBUG_ASN1_TAILQ_PREREMOVE(head, elm, field) \
head 75 source4/heimdal/lib/asn1/asn1_queue.h (head)->tqh_last != &(elm)->field.tqe_next) \
head 77 source4/heimdal/lib/asn1/asn1_queue.h (head), (elm), __FILE__, __LINE__);
head 82 source4/heimdal/lib/asn1/asn1_queue.h #define QUEUEDEBUG_ASN1_TAILQ_INSERT_HEAD(head, elm, field)
head 83 source4/heimdal/lib/asn1/asn1_queue.h #define QUEUEDEBUG_ASN1_TAILQ_INSERT_TAIL(head, elm, field)
head 85 source4/heimdal/lib/asn1/asn1_queue.h #define QUEUEDEBUG_ASN1_TAILQ_PREREMOVE(head, elm, field)
head 89 source4/heimdal/lib/asn1/asn1_queue.h #define ASN1_TAILQ_INIT(head) do { \
head 90 source4/heimdal/lib/asn1/asn1_queue.h (head)->tqh_first = NULL; \
head 91 source4/heimdal/lib/asn1/asn1_queue.h (head)->tqh_last = &(head)->tqh_first; \
head 94 source4/heimdal/lib/asn1/asn1_queue.h #define ASN1_TAILQ_INSERT_HEAD(head, elm, field) do { \
head 95 source4/heimdal/lib/asn1/asn1_queue.h QUEUEDEBUG_ASN1_TAILQ_INSERT_HEAD((head), (elm), field) \
head 96 source4/heimdal/lib/asn1/asn1_queue.h if (((elm)->field.tqe_next = (head)->tqh_first) != NULL) \
head 97 source4/heimdal/lib/asn1/asn1_queue.h (head)->tqh_first->field.tqe_prev = \
head 100 source4/heimdal/lib/asn1/asn1_queue.h (head)->tqh_last = &(elm)->field.tqe_next; \
head 101 source4/heimdal/lib/asn1/asn1_queue.h (head)->tqh_first = (elm); \
head 102 source4/heimdal/lib/asn1/asn1_queue.h (elm)->field.tqe_prev = &(head)->tqh_first; \
head 105 source4/heimdal/lib/asn1/asn1_queue.h #define ASN1_TAILQ_INSERT_TAIL(head, elm, field) do { \
head 106 source4/heimdal/lib/asn1/asn1_queue.h QUEUEDEBUG_ASN1_TAILQ_INSERT_TAIL((head), (elm), field) \
head 108 source4/heimdal/lib/asn1/asn1_queue.h (elm)->field.tqe_prev = (head)->tqh_last; \
head 109 source4/heimdal/lib/asn1/asn1_queue.h *(head)->tqh_last = (elm); \
head 110 source4/heimdal/lib/asn1/asn1_queue.h (head)->tqh_last = &(elm)->field.tqe_next; \
head 113 source4/heimdal/lib/asn1/asn1_queue.h #define ASN1_TAILQ_INSERT_AFTER(head, listelm, elm, field) do { \
head 119 source4/heimdal/lib/asn1/asn1_queue.h (head)->tqh_last = &(elm)->field.tqe_next; \
head 132 source4/heimdal/lib/asn1/asn1_queue.h #define ASN1_TAILQ_REMOVE(head, elm, field) do { \
head 133 source4/heimdal/lib/asn1/asn1_queue.h QUEUEDEBUG_ASN1_TAILQ_PREREMOVE((head), (elm), field) \
head 139 source4/heimdal/lib/asn1/asn1_queue.h (head)->tqh_last = (elm)->field.tqe_prev; \
head 144 source4/heimdal/lib/asn1/asn1_queue.h #define ASN1_TAILQ_FOREACH(var, head, field) \
head 145 source4/heimdal/lib/asn1/asn1_queue.h for ((var) = ((head)->tqh_first); \
head 149 source4/heimdal/lib/asn1/asn1_queue.h #define ASN1_TAILQ_FOREACH_REVERSE(var, head, headname, field) \
head 150 source4/heimdal/lib/asn1/asn1_queue.h for ((var) = (*(((struct headname *)((head)->tqh_last))->tqh_last)); \
head 157 source4/heimdal/lib/asn1/asn1_queue.h #define ASN1_TAILQ_EMPTY(head) ((head)->tqh_first == NULL)
head 158 source4/heimdal/lib/asn1/asn1_queue.h #define ASN1_TAILQ_FIRST(head) ((head)->tqh_first)
head 161 source4/heimdal/lib/asn1/asn1_queue.h #define ASN1_TAILQ_LAST(head, headname) \
head 162 source4/heimdal/lib/asn1/asn1_queue.h (*(((struct headname *)((head)->tqh_last))->tqh_last))
head 2774 source4/heimdal/lib/asn1/parse.c add_oid_to_tail(struct objid *head, struct objid *tail)
head 2777 source4/heimdal/lib/asn1/parse.c o = head;
head 959 source4/heimdal/lib/asn1/parse.y add_oid_to_tail(struct objid *head, struct objid *tail)
head 962 source4/heimdal/lib/asn1/parse.y o = head;
head 47 source4/heimdal/lib/gssapi/mech/mechqueue.h #define SLIST_HEAD_INITIALIZER(head) \
head 58 source4/heimdal/lib/gssapi/mech/mechqueue.h #define SLIST_INIT(head) do { \
head 59 source4/heimdal/lib/gssapi/mech/mechqueue.h (head)->slh_first = NULL; \
head 67 source4/heimdal/lib/gssapi/mech/mechqueue.h #define SLIST_INSERT_HEAD(head, elm, field) do { \
head 68 source4/heimdal/lib/gssapi/mech/mechqueue.h (elm)->field.sle_next = (head)->slh_first; \
head 69 source4/heimdal/lib/gssapi/mech/mechqueue.h (head)->slh_first = (elm); \
head 72 source4/heimdal/lib/gssapi/mech/mechqueue.h #define SLIST_REMOVE_HEAD(head, field) do { \
head 73 source4/heimdal/lib/gssapi/mech/mechqueue.h (head)->slh_first = (head)->slh_first->field.sle_next; \
head 76 source4/heimdal/lib/gssapi/mech/mechqueue.h #define SLIST_REMOVE(head, elm, type, field) do { \
head 77 source4/heimdal/lib/gssapi/mech/mechqueue.h if ((head)->slh_first == (elm)) { \
head 78 source4/heimdal/lib/gssapi/mech/mechqueue.h SLIST_REMOVE_HEAD((head), field); \
head 81 source4/heimdal/lib/gssapi/mech/mechqueue.h struct type *curelm = (head)->slh_first; \
head 89 source4/heimdal/lib/gssapi/mech/mechqueue.h #define SLIST_FOREACH(var, head, field) \
head 90 source4/heimdal/lib/gssapi/mech/mechqueue.h for((var) = (head)->slh_first; (var); (var) = (var)->field.sle_next)
head 95 source4/heimdal/lib/gssapi/mech/mechqueue.h #define SLIST_EMPTY(head) ((head)->slh_first == NULL)
head 96 source4/heimdal/lib/gssapi/mech/mechqueue.h #define SLIST_FIRST(head) ((head)->slh_first)
head 373 source4/heimdal/lib/krb5/config_file.c krb5_config_section **head)
head 377 source4/heimdal/lib/krb5/config_file.c *head = NULL;
head 382 source4/heimdal/lib/krb5/config_file.c if (*head == NULL)
head 383 source4/heimdal/lib/krb5/config_file.c *head = d;
head 54 source4/heimdal/lib/krb5/get_host_realm.c copy_txt_to_realms (struct resource_record *head,
head 60 source4/heimdal/lib/krb5/get_host_realm.c for(n = 0, rr = head; rr; rr = rr->next)
head 74 source4/heimdal/lib/krb5/get_host_realm.c for (i = 0, rr = head; rr; rr = rr->next) {
head 121 source4/heimdal/lib/krb5/get_host_realm.c ret = copy_txt_to_realms (r->head, realms);
head 94 source4/heimdal/lib/krb5/krbhst.c for(num_srv = 0, rr = r->head; rr; rr = rr->next)
head 108 source4/heimdal/lib/krb5/krbhst.c for(num_srv = 0, rr = r->head; rr; rr = rr->next)
head 945 source4/heimdal/lib/krb5/principal.c if (r->head && r->head->type == T_AAAA) {
head 946 source4/heimdal/lib/krb5/principal.c inst = strdup(r->head->domain);
head 953 source4/heimdal/lib/krb5/principal.c if(r->head && r->head->type == T_A) {
head 954 source4/heimdal/lib/krb5/principal.c inst = strdup(r->head->domain);
head 259 source4/heimdal/lib/krb5/transited.c append_realm(struct tr_realm *head, struct tr_realm *r)
head 262 source4/heimdal/lib/krb5/transited.c if(head == NULL){
head 266 source4/heimdal/lib/krb5/transited.c p = head;
head 269 source4/heimdal/lib/krb5/transited.c return head;
head 118 source4/heimdal/lib/roken/resolve.c for(rr = r->head; rr;){
head 470 source4/heimdal/lib/roken/resolve.c rr = &r->head;
head 618 source4/heimdal/lib/roken/resolve.c for(rr = r->head; rr; rr = rr->next)
head 631 source4/heimdal/lib/roken/resolve.c for(ss = srvs, headp = &r->head; *headp; )
head 647 source4/heimdal/lib/roken/resolve.c headp = &r->head;
head 283 source4/heimdal/lib/roken/resolve.h struct resource_record *head;
head 108 source4/libcli/resolve/dns_ex.c for (rr=reply->head; rr; rr=rr->next) {
head 163 source4/libcli/resolve/dns_ex.c for (rr=reply->head;rr;rr=rr->next) {
head 205 source4/libcli/resolve/dns_ex.c for (rr=reply->head;rr;rr=rr->next) {