/third_party/mesa3d/src/mesa/drivers/dri/nouveau/ |
D | nouveau_render_t.c | 158 unsigned max_out; in get_max_vertices() local 163 max_out = MAX_OUT_I32; in get_max_vertices() 167 max_out = MAX_OUT_I16; in get_max_vertices() 171 max_out = MAX_OUT_I16; in get_max_vertices() 176 max_out = 0; in get_max_vertices() 180 max_out = MAX_OUT_L; in get_max_vertices() 183 return MAX2(0, n - 7) * max_out * MAX_PACKET / (1 + MAX_PACKET); in get_max_vertices()
|
/third_party/icu/icu4c/source/test/intltest/ |
D | punyref.cpp | 135 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/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/ |
D | PunycodeReference.java | 145 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/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
D | PunycodeReference.java | 142 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/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_program.c | 132 prog->max_out = n; in nv50_vertprog_assign_slots() 133 if (!prog->max_out) in nv50_vertprog_assign_slots() 134 prog->max_out = 1; in nv50_vertprog_assign_slots() 234 prog->max_out = MAX2(prog->max_out, prog->out[i].hw + 4); in nv50_fragprog_assign_slots() 238 info->out[info->io.sampleMask].slot[0] = prog->max_out++; in nv50_fragprog_assign_slots() 243 info->out[info->io.fragDepth].slot[2] = prog->max_out++; in nv50_fragprog_assign_slots() 245 if (!prog->max_out) in nv50_fragprog_assign_slots() 246 prog->max_out = 4; in nv50_fragprog_assign_slots()
|
D | nv50_program.h | 71 ubyte max_out; /* REG_ALLOC_RESULT or FP_RESULT_COUNT */ member
|
D | nv50_shader_state.c | 168 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()
|
D | nv50_surface.c | 886 blit->vp.max_out = 5; in nv50_blitter_make_vp()
|
/third_party/gstreamer/gstplugins_bad/ext/vulkan/ |
D | vkviewconvert.c | 738 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/ |
D | gstglviewconvert.c | 525 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/grpc/src/core/lib/channel/ |
D | channel_args.cc | 129 const size_t max_out = (a->num_args + b->num_args); in grpc_channel_args_union() local 131 static_cast<grpc_arg*>(gpr_malloc(sizeof(*uniques) * max_out)); in grpc_channel_args_union()
|
/third_party/libpsl/src/ |
D | psl.c | 419 size_t out, max_out; in punycode_encode() local 435 max_out = *output_length; in punycode_encode() 441 if (max_out - out < 2) in punycode_encode() 491 if (out >= max_out) in punycode_encode()
|
/third_party/openssl/test/ossl_shim/ |
D | ossl_shim.cc | 715 static int DoRead(SSL *ssl, uint8_t *out, size_t max_out) { in DoRead() argument 726 ret = config->peek_then_read ? SSL_peek(ssl, out, max_out) in DoRead() 727 : SSL_read(ssl, out, max_out); in DoRead()
|
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/ |
D | sctp_output.c | 13926 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;
|