| /lighttpd1.4/src/ls-hpack/ |
| H A D | lshpack.c | 478 input->name_hash = XXH32(lsxpack_header_get_name(input), in update_hash() 481 assert(input->name_hash == XXH32(lsxpack_header_get_name(input), in update_hash() 485 input->nameval_hash = XXH32(input->buf + input->val_offset, in update_hash() 486 input->val_len, input->name_hash); in update_hash() 488 assert(input->nameval_hash == XXH32(input->buf + input->val_offset, in update_hash() 550 const char *val_ptr = input->buf + input->val_offset; in henc_find_table_id() 590 input->nameval_hash = XXH32(val_ptr, input->val_len, in henc_find_table_id() 593 assert(input->nameval_hash == XXH32(val_ptr, input->val_len, in henc_find_table_id() 600 input->hpack_index = lshpack_enc_get_static_nameval(input); in henc_find_table_id() 625 input->hpack_index = lshpack_enc_get_static_name(input); in henc_find_table_id() [all …]
|
| H A D | lshpack.h | 161 unsigned char *dst_end, struct lsxpack_header *input);
|
| /lighttpd1.4/src/ |
| H A D | algo_xxhash.h | 2118 v1 = XXH32_round(v1, XXH_get32bits(input)); input += 4; in XXH32_endian_align() 2119 v2 = XXH32_round(v2, XXH_get32bits(input)); input += 4; in XXH32_endian_align() 2120 v3 = XXH32_round(v3, XXH_get32bits(input)); input += 4; in XXH32_endian_align() 2121 v4 = XXH32_round(v4, XXH_get32bits(input)); input += 4; in XXH32_endian_align() 2196 if (input==NULL) { in XXH32_update() 2531 v1 = XXH64_round(v1, XXH_get64bits(input)); input+=8; in XXH64_endian_align() 2532 v2 = XXH64_round(v2, XXH_get64bits(input)); input+=8; in XXH64_endian_align() 2533 v3 = XXH64_round(v3, XXH_get64bits(input)); input+=8; in XXH64_endian_align() 2534 v4 = XXH64_round(v4, XXH_get64bits(input)); input+=8; in XXH64_endian_align() 4978 XXH_memcpy(state->buffer, input, (size_t)(bEnd-input)); in XXH3_update() [all …]
|
| H A D | algo_md5.c | 72 #define MD5_memcpy(output, input, len) memcpy((output), (input), (len)) argument 143 const unsigned char *input = (const unsigned char*) _input; in li_MD5_Update() local 165 li_MD5Transform (context->state, &input[i]); in li_MD5_Update() 174 ((POINTER)&context->buffer[ndx], (POINTER)&input[i], in li_MD5_Update() 306 output[j] = (unsigned char)(input[i] & 0xff); in Encode() 307 output[j+1] = (unsigned char)((input[i] >> 8) & 0xff); in Encode() 308 output[j+2] = (unsigned char)((input[i] >> 16) & 0xff); in Encode() 309 output[j+3] = (unsigned char)((input[i] >> 24) & 0xff); in Encode() 321 output[i] = ((UINT4)input[j]) | (((UINT4)input[j+1]) << 8) | in Decode() 322 (((UINT4)input[j+2]) << 16) | (((UINT4)input[j+3]) << 24); in Decode() [all …]
|
| H A D | mod_ssi.c | 220 const char *input; member 274 && (t->input[t->offset] == ' ' || t->input[t->offset] == '\t')) { in ssi_expr_tokenizer() 279 if (t->input[t->offset] == '\0') { in ssi_expr_tokenizer() 285 switch (t->input[t->offset]) { in ssi_expr_tokenizer() 288 if (t->input[t->offset + 1] == '=') in ssi_expr_tokenizer() 351 while (t->input[t->offset + i] && t->input[t->offset + i] != '\'') in ssi_expr_tokenizer() 353 if (t->input[t->offset + i]) { in ssi_expr_tokenizer() 368 while (t->input[t->offset + i] && t->input[t->offset + i] != '}') in ssi_expr_tokenizer() 376 var = t->input + t->offset + 2; in ssi_expr_tokenizer() 383 var = t->input + t->offset + 1; in ssi_expr_tokenizer() [all …]
|
| H A D | keyvalue.c | 397 …ess(const pcre_keyvalue_buffer *kvb, pcre_keyvalue_ctx *ctx, const buffer *input, buffer *result) { in pcre_keyvalue_buffer_process() argument 402 int n = pcre2_match(kv->code, (PCRE2_SPTR)BUF_PTR_LEN(input), in pcre_keyvalue_buffer_process() 408 int n = pcre_exec(kv->key, kv->key_extra, BUF_PTR_LEN(input), in pcre_keyvalue_buffer_process() 433 ctx->subject = input->ptr; in pcre_keyvalue_buffer_process()
|
| H A D | keyvalue.h | 41 …cess(const pcre_keyvalue_buffer *kvb, pcre_keyvalue_ctx *ctx, const buffer *input, buffer *result);
|
| H A D | SConscript | 105 def Lemon(env, input): 106 …parser = env.Command([input.replace('.y', '.c'),input.replace('.y', '.h')], input, lemon[0].path +…
|
| H A D | configfile.c | 1823 const char *input; member 1839 const char * const s = t->input + t->offset; in config_skip_newline() 1848 const char *s = t->input + t->offset; in config_skip_comment() 1850 return (int)(s - t->input); in config_skip_comment() 1869 const char * const s = t->input + t->offset; in config_tokenizer() 1931 switch (t->input[t->offset]) { in config_tokenizer() 2029 int c = t->input[t->offset]; in config_tokenizer() 2118 static int config_parse(server *srv, config_t *context, const char *source, const char *input, int … in config_parse() argument 2124 t.input = input; in config_parse()
|
| H A D | mod_dirlisting.c | 244 buffer input = { NULL, len+1, 0 }; in mod_dirlisting_exclude() local 245 *(const char **)&input.ptr = name; in mod_dirlisting_exclude() 257 return HANDLER_ERROR == pcre_keyvalue_buffer_process(kvb,&ctx,&input,NULL) in mod_dirlisting_exclude()
|
| H A D | meson.build | 583 # generator doesn't handle additional "input dependencies" like lempar.c 586 input: ['configparser.y', 'lempar.c'],
|
| H A D | configparser.y | 367 input ::= metalines.
|
| /lighttpd1.4/ |
| H A D | NEWS | 202 * [mod_deflate] mark input bytes const 259 * [mod_cgi] disable input optim if might Upgrade 1654 * [mod_cgi] use splice() to send input to CGI 2532 * [core] fix triggered assert on HTTP chunked input (fixes #2822)
|