Home
last modified time | relevance | path

Searched refs:max_out (Results 1 – 11 of 11) sorted by relevance

/third_party/icu/icu4c/source/test/intltest/
Dpunyref.cpp135 punycode_uint n, delta, h, b, out, max_out, bias, j, m, q, k, t; in punycode_encode() local
141 max_out = *output_length; in punycode_encode()
148 if (max_out - out < 2) return punycode_big_output; in punycode_encode()
193 if (out >= max_out) return punycode_big_output; in punycode_encode()
224 punycode_uint n, out, i, max_out, bias, in punycode_decode() local
231 max_out = *output_length; in punycode_decode()
239 if (b > max_out) return punycode_big_output; in punycode_decode()
286 if (out >= max_out) return punycode_big_output; in punycode_decode()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
DPunycodeReference.java142 int delta, h, b, out, max_out, bias, j, q, k, t; in encode() local
148 max_out = output_length[0]; in encode()
155 if (max_out - out < 2) return punycode_big_output; in encode()
200 if (out >= max_out) return punycode_big_output; in encode()
302 int n, out, i, max_out, bias, in decode() local
309 max_out = output_length[0]; in decode()
321 if (b > max_out) return punycode_big_output; in decode()
368 if (out >= max_out) return punycode_big_output; in decode()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/
DPunycodeReference.java145 int delta, h, b, out, max_out, bias, j, q, k, t; in encode() local
151 max_out = output_length[0]; in encode()
158 if (max_out - out < 2) return punycode_big_output; in encode()
203 if (out >= max_out) return punycode_big_output; in encode()
305 int n, out, i, max_out, bias, in decode() local
312 max_out = output_length[0]; in decode()
324 if (b > max_out) return punycode_big_output; in decode()
371 if (out >= max_out) return punycode_big_output; in decode()
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_program.c135 prog->max_out = n; in nv50_vertprog_assign_slots()
136 if (!prog->max_out) in nv50_vertprog_assign_slots()
137 prog->max_out = 1; in nv50_vertprog_assign_slots()
237 prog->max_out = MAX2(prog->max_out, prog->out[i].hw + 4); in nv50_fragprog_assign_slots()
241 info->out[info->io.sampleMask].slot[0] = prog->max_out++; in nv50_fragprog_assign_slots()
246 info->out[info->io.fragDepth].slot[2] = prog->max_out++; in nv50_fragprog_assign_slots()
248 if (!prog->max_out) in nv50_fragprog_assign_slots()
249 prog->max_out = 4; in nv50_fragprog_assign_slots()
Dnv50_program.h71 ubyte max_out; /* REG_ALLOC_RESULT or FP_RESULT_COUNT */ member
Dnv50_shader_state.c168 PUSH_DATA (push, vp->max_out); in nv50_vertprog_validate()
242 PUSH_DATA (push, fp->max_out); in nv50_fragprog_validate()
274 PUSH_DATA (push, gp->max_out); in nv50_gmtyprog_validate()
Dnv50_surface.c886 blit->vp.max_out = 5; in nv50_blitter_make_vp()
/third_party/openssl/crypto/
Dpunycode.c125 unsigned int max_out = *pout_length; in ossl_punycode_decode() local
135 if (basic_count > max_out) in ossl_punycode_decode()
183 if (written_out >= max_out) in ossl_punycode_decode()
/third_party/gstreamer/gstplugins_bad/ext/vulkan/
Dvkviewconvert.c738 GValue max_out = G_VALUE_INIT; in _halve_value() local
742 _halve_value (&max_out, range_max); in _halve_value()
744 gst_value_set_fraction_range (out, &min_out, &max_out); in _halve_value()
746 g_value_unset (&max_out); in _halve_value()
831 GValue max_out = G_VALUE_INIT; in _double_value() local
835 _double_value (&max_out, range_max); in _double_value()
837 gst_value_set_fraction_range (out, &min_out, &max_out); in _double_value()
839 g_value_unset (&max_out); in _double_value()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/
Dgstglviewconvert.c525 GValue max_out = G_VALUE_INIT; in _halve_value() local
529 _halve_value (&max_out, range_max); in _halve_value()
531 gst_value_set_fraction_range (out, &min_out, &max_out); in _halve_value()
533 g_value_unset (&max_out); in _halve_value()
618 GValue max_out = G_VALUE_INIT; in _double_value() local
622 _double_value (&max_out, range_max); in _double_value()
624 gst_value_set_fraction_range (out, &min_out, &max_out); in _double_value()
626 g_value_unset (&max_out); in _double_value()
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_output.c13926 ssize_t tot_demand, tot_out = 0, max_out; local
13967 max_out = asoc->smallest_mtu - sizeof(struct sctp_paramhdr);
13968 max_out -= sizeof(struct sctp_abort_msg);
13969 if (tot_out > max_out) {
13970 tot_out = max_out;