word 44 lib/zlib/contrib/iostream2/zstream.h size_t value() const { return val.word; }
word 46 lib/zlib/contrib/iostream2/zstream.h struct Val { unsigned char byte; size_t word; } val;
word 131 lib/zlib/contrib/iostream2/zstream.h if (val.byte == 255) zs > val.word;
word 132 lib/zlib/contrib/iostream2/zstream.h else val.word = val.byte;
word 278 lib/zlib/contrib/iostream2/zstream.h val.byte = 255; val.word = ::strlen(x);
word 279 lib/zlib/contrib/iostream2/zstream.h if (val.word < 255) zs < (val.byte = val.word);
word 385 lib/zlib/inflate.c # define CRC2(check, word) \
word 387 lib/zlib/inflate.c hbuf[0] = (unsigned char)(word); \
word 388 lib/zlib/inflate.c hbuf[1] = (unsigned char)((word) >> 8); \
word 392 lib/zlib/inflate.c # define CRC4(check, word) \
word 394 lib/zlib/inflate.c hbuf[0] = (unsigned char)(word); \
word 395 lib/zlib/inflate.c hbuf[1] = (unsigned char)((word) >> 8); \
word 396 lib/zlib/inflate.c hbuf[2] = (unsigned char)((word) >> 16); \
word 397 lib/zlib/inflate.c hbuf[3] = (unsigned char)((word) >> 24); \
word 2422 source3/modules/getdate.c lookup_word (parser_control const *pc, char *word)
word 2432 source3/modules/getdate.c for (p = word; *p; p++)
word 2437 source3/modules/getdate.c if (strcmp (word, tp->name) == 0)
word 2441 source3/modules/getdate.c wordlen = strlen (word);
word 2442 source3/modules/getdate.c abbrev = wordlen == 3 || (wordlen == 4 && word[3] == '.');
word 2445 source3/modules/getdate.c if ((abbrev ? strncmp (word, tp->name, 3) : strcmp (word, tp->name)) == 0)
word 2448 source3/modules/getdate.c if ((tp = lookup_zone (pc, word)))
word 2451 source3/modules/getdate.c if (strcmp (word, dst_table[0].name) == 0)
word 2455 source3/modules/getdate.c if (strcmp (word, tp->name) == 0)
word 2459 source3/modules/getdate.c if (word[wordlen - 1] == 'S')
word 2461 source3/modules/getdate.c word[wordlen - 1] = '\0';
word 2463 source3/modules/getdate.c if (strcmp (word, tp->name) == 0)
word 2465 source3/modules/getdate.c word[wordlen - 1] = 'S'; /* For "this" in relative_time_table. */
word 2469 source3/modules/getdate.c if (strcmp (word, tp->name) == 0)
word 2475 source3/modules/getdate.c if (word[0] == tp->name[0])
word 2479 source3/modules/getdate.c for (i = 0, p = q = word; (*p = *q); q++)
word 2484 source3/modules/getdate.c if (i && (tp = lookup_zone (pc, word)))
word 721 source3/modules/getdate.y lookup_word (parser_control const *pc, char *word)
word 731 source3/modules/getdate.y for (p = word; *p; p++)
word 736 source3/modules/getdate.y if (strcmp (word, tp->name) == 0)
word 740 source3/modules/getdate.y wordlen = strlen (word);
word 741 source3/modules/getdate.y abbrev = wordlen == 3 || (wordlen == 4 && word[3] == '.');
word 744 source3/modules/getdate.y if ((abbrev ? strncmp (word, tp->name, 3) : strcmp (word, tp->name)) == 0)
word 747 source3/modules/getdate.y if ((tp = lookup_zone (pc, word)))
word 750 source3/modules/getdate.y if (strcmp (word, dst_table[0].name) == 0)
word 754 source3/modules/getdate.y if (strcmp (word, tp->name) == 0)
word 758 source3/modules/getdate.y if (word[wordlen - 1] == 'S')
word 760 source3/modules/getdate.y word[wordlen - 1] = '\0';
word 762 source3/modules/getdate.y if (strcmp (word, tp->name) == 0)
word 764 source3/modules/getdate.y word[wordlen - 1] = 'S'; /* For "this" in relative_time_table. */
word 768 source3/modules/getdate.y if (strcmp (word, tp->name) == 0)
word 774 source3/modules/getdate.y if (word[0] == tp->name[0])
word 778 source3/modules/getdate.y for (i = 0, p = q = word; (*p = *q); q++)
word 783 source3/modules/getdate.y if (i && (tp = lookup_zone (pc, word)))
word 60 source4/heimdal/lib/hx509/sel-gram.y %type <expr> word words
word 85 source4/heimdal/lib/hx509/sel-gram.y words : word { $$ = _hx509_make_expr(expr_WORDS, $1, NULL); }
word 86 source4/heimdal/lib/hx509/sel-gram.y | word ',' words { $$ = _hx509_make_expr(expr_WORDS, $1, $3); }
word 89 source4/heimdal/lib/hx509/sel-gram.y comp : word '=' '=' word { $$ = _hx509_make_expr(comp_EQ, $1, $4); }
word 90 source4/heimdal/lib/hx509/sel-gram.y | word '!' '=' word { $$ = _hx509_make_expr(comp_NE, $1, $4); }
word 91 source4/heimdal/lib/hx509/sel-gram.y | word kw_TAILMATCH word { $$ = _hx509_make_expr(comp_TAILEQ, $1, $3); }
word 92 source4/heimdal/lib/hx509/sel-gram.y | word kw_IN '(' words ')' { $$ = _hx509_make_expr(comp_IN, $1, $4); }
word 93 source4/heimdal/lib/hx509/sel-gram.y | word kw_IN variable { $$ = _hx509_make_expr(comp_IN, $1, $3); }
word 96 source4/heimdal/lib/hx509/sel-gram.y word : number { $$ = $1; }
word 52 source4/heimdal/lib/hx509/sel.c eval_word(hx509_context context, hx509_env env, struct hx_expr *word)
word 54 source4/heimdal/lib/hx509/sel.c switch (word->op) {
word 56 source4/heimdal/lib/hx509/sel.c return word->arg1;
word 58 source4/heimdal/lib/hx509/sel.c if (word->arg2 == NULL)
word 59 source4/heimdal/lib/hx509/sel.c return hx509_env_find(context, env, word->arg1);
word 61 source4/heimdal/lib/hx509/sel.c env = hx509_env_find_binding(context, env, word->arg1);
word 65 source4/heimdal/lib/hx509/sel.c return eval_word(context, env, word->arg2);
word 72 source4/heimdal/lib/hx509/sel.c find_variable(hx509_context context, hx509_env env, struct hx_expr *word)
word 74 source4/heimdal/lib/hx509/sel.c assert(word->op == expr_VAR);
word 76 source4/heimdal/lib/hx509/sel.c if (word->arg2 == NULL)
word 77 source4/heimdal/lib/hx509/sel.c return hx509_env_find_binding(context, env, word->arg1);
word 79 source4/heimdal/lib/hx509/sel.c env = hx509_env_find_binding(context, env, word->arg1);
word 82 source4/heimdal/lib/hx509/sel.c return find_variable(context, env, word->arg2);