Lines Matching defs:params
37 BrotliHasherParams params;
406 static BROTLI_INLINE size_t HasherSize(const BrotliEncoderParams* params,
408 switch (params->hasher.type) {
411 return HashMemAllocInBytesH ## N(params, one_shot, input_size);
421 BrotliEncoderParams* params, const uint8_t* data, size_t position,
426 ChooseHasher(params, ¶ms->hasher);
427 alloc_size = HasherSize(params, one_shot, input_size);
430 hasher->common.params = params->hasher;
431 switch (hasher->common.params.type) {
435 &hasher->privat._H ## N, params); \
446 switch (hasher->common.params.type) {
467 BrotliEncoderParams* params, size_t position, size_t input_size,
469 HasherSetup(m, hasher, params, data, position, input_size, is_last);
471 switch (hasher->common.params.type) {