Lines Matching defs:params
40 const BrotliEncoderParams* params;
44 HashComposite* BROTLI_RESTRICT self, const BrotliEncoderParams* params) {
50 self->params = params;
51 /* TODO: Initialize of the hashers is defered to Prepare (and params
52 remembered here) because we don't get the one_shot and input_size params
54 those params to all hashers FN(Initialize) */
63 FN_A(HashMemAllocInBytes)(self->params, one_shot, input_size);
65 FN_A(Initialize)(self->common, &self->ha, self->params);
66 FN_B(Initialize)(&self->hb_common, &self->hb, self->params);
73 const BrotliEncoderParams* params, BROTLI_BOOL one_shot,
75 return FN_A(HashMemAllocInBytes)(params, one_shot, input_size) +
76 FN_B(HashMemAllocInBytes)(params, one_shot, input_size);