Home
last modified time | relevance | path

Searched refs:tmax (Results 1 - 25 of 25) sorted by relevance

/third_party/icu/icu4c/source/test/intltest/
H A Dpunyref.cpp51 enum { base = 36, tmin = 1, tmax = 26, skew = 38, damp = 700, enumerator
119 for (k = 0; delta > ((base - tmin) * tmax) / 2; k += base) { in adapt()
195 k >= bias + tmax ? static_cast<punycode_uint>(tmax) : k - bias; in punycode_encode()
267 k >= bias + tmax ? static_cast<punycode_uint>(tmax) : k - bias; in punycode_decode()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/
H A DPunycodeReference.java52 private static final int tmax = 26; field in PunycodeReference
131 for (k = 0; delta > ((base - tmin) * tmax) / 2; k += base) { in adapt()
205 k >= bias + tmax ? tmax : k - bias; in encode()
352 (k >= (bias + tmax)) ? tmax : k - bias; in decode()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
H A DPunycodeReference.java49 private static final int tmax = 26; field in PunycodeReference
128 for (k = 0; delta > ((base - tmin) * tmax) / 2; k += base) { in adapt()
202 k >= bias + tmax ? tmax : k - bias; in encode()
349 (k >= (bias + tmax)) ? tmax : k - bias; in decode()
/third_party/skia/tests/
H A DWangsFormulaTest.cpp76 // Return corresponding num segments in the interval [tmin,tmax] in wangs_formula_conic_reference_impl()
77 constexpr float tmin = 0, tmax = 1; in wangs_formula_conic_reference_impl() local
79 return (tmax - tmin) / delta; in wangs_formula_conic_reference_impl()
364 const float tmin = j * tdelta, tmax = (j + 1) * tdelta; in DEF_TEST()
366 // Get section of quad in [tmin,tmax] in DEF_TEST()
371 if (tmax == 1) { in DEF_TEST()
374 SkChopQuadAt(pts, tmp0, tmax); in DEF_TEST()
379 if (tmax == 1) { in DEF_TEST()
382 SkChopQuadAt(tmp0 + 2, tmp1, (tmax - tmin) / (1 - tmin)); in DEF_TEST()
459 const float tmin = j * tdelta, tmax in DEF_TEST()
[all...]
/third_party/curl/lib/
H A Dcf-https-connect.c365 struct curltime t, tmax; in cf_get_max_baller_time() local
367 memset(&tmax, 0, sizeof(tmax)); in cf_get_max_baller_time()
371 if((t.tv_sec || t.tv_usec) && Curl_timediff_us(t, tmax) > 0) in cf_get_max_baller_time()
372 tmax = t; in cf_get_max_baller_time()
377 if((t.tv_sec || t.tv_usec) && Curl_timediff_us(t, tmax) > 0) in cf_get_max_baller_time()
378 tmax = t; in cf_get_max_baller_time()
380 return tmax; in cf_get_max_baller_time()
H A Dconnect.c965 struct curltime t, tmax; in get_max_baller_time() local
968 memset(&tmax, 0, sizeof(tmax)); in get_max_baller_time()
975 if((t.tv_sec || t.tv_usec) && Curl_timediff_us(t, tmax) > 0) in get_max_baller_time()
976 tmax = t; in get_max_baller_time()
979 return tmax; in get_max_baller_time()
/third_party/node/deps/openssl/openssl/crypto/
H A Dpunycode.c18 static const unsigned int tmax = 26; variable
36 * while delta > ((base - tmin) * tmax) div 2 do begin
51 while (delta > ((base - tmin) * tmax) / 2) { in adapt()
105 * tmax if k >= bias + tmax, or k - bias otherwise
167 t = (k <= bias) ? tmin : (k >= bias + tmax) ? tmax : k - bias; in ossl_punycode_decode()
/third_party/openssl/crypto/
H A Dpunycode.c18 static const unsigned int tmax = 26; variable
36 * while delta > ((base - tmin) * tmax) div 2 do begin
51 while (delta > ((base - tmin) * tmax) / 2) { in adapt()
105 * tmax if k >= bias + tmax, or k - bias otherwise
167 t = (k <= bias) ? tmin : (k >= bias + tmax) ? tmax : k - bias; in ossl_punycode_decode()
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_pipeline_rt.c214 nir_variable *tmax; member
283 vars.tmax = nir_variable_create(shader, nir_var_shader_temp, glsl_float_type(), "ray_tmax"); in create_rt_variables()
332 _mesa_hash_table_insert(var_remap, src->tmax, dst->tmax); in map_rt_variables()
366 inner_vars.tmax = in create_inner_vars()
501 nir_store_var(&b_shader, vars->tmax, intr->src[9].ssa, 0x1); in lower_rt_instructions()
566 ret = nir_load_var(&b_shader, vars->tmax); in lower_rt_instructions()
693 nir_fge(&b_shader, nir_load_var(&b_shader, vars->tmax), intr->src[0].ssa), in lower_rt_instructions()
697 nir_store_var(&b_shader, vars->tmax, intr->src[0].ssa, 1); in lower_rt_instructions()
1147 nir_iand(b, nir_flt(b, dist, nir_load_var(b, vars->tmax)), in insert_traversal_triangle_case()
[all...]
H A Dradv_rt_common.c139 /* float tmax = min(min(max(bound0.x, bound1.x), max(bound0.y, bound1.y)), max(bound0.z, in intersect_ray_amd_software_box()
141 nir_ssa_def *tmax = in intersect_ray_amd_software_box() local
147 /* if (!isnan(node->coords[i][0].x) && tmax >= max(0.0f, tmin) && tmin < ray_tmax) { */ in intersect_ray_amd_software_box()
150 nir_iand(b, nir_fge(b, tmax, nir_fmax(b, nir_imm_float(b, 0.0f), tmin)), in intersect_ray_amd_software_box()
/third_party/skia/samplecode/
H A DSampleVariableWidthStroker.cpp109 /** Splits this curve into the subinterval [tmin,tmax]. */
110 void split(float tmin, float tmax, ScalarBezCurve* result) const { in split() argument
112 const float tRel = tmin / tmax; in split()
114 this->split(tmax, &rl, &rr); in split()
289 float tmax, in ZeroSetRec()
300 result->push_back((tmin + tmax) * 0.5); in ZeroSetRec()
306 } else if (SkScalarNearlyZero(tmax - tmin)) { in ZeroSetRec()
312 const float tmid = (tmin + tmax) * 0.5; in ZeroSetRec()
314 ZeroSetRec(right, tmid, tmax, tol, result); in ZeroSetRec()
564 const float tmax
287 ZeroSetRec(const ScalarBezCurve& curve, float tmin, float tmax, float tol, std::vector<float>* result) ZeroSetRec() argument
[all...]
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/sys/shm_h/
H A D5-1-buildonly.c21 static shmatt_t tmax = USHRT_MAX; variable
/third_party/ffmpeg/libavfilter/
H A Dvf_vectorscope.c73 int tmax; member
442 const int tmax = s->tmax; in vectorscope16() local
466 if (z < tmin || z > tmax) in vectorscope16()
485 if (z < tmin || z > tmax) in vectorscope16()
505 if (z < tmin || z > tmax) in vectorscope16()
527 if (z < tmin || z > tmax) in vectorscope16()
547 if (z < tmin || z > tmax) in vectorscope16()
640 const int tmax = s->tmax; in vectorscope8() local
[all...]
/third_party/mesa3d/src/mesa/main/
H A Ddebug_output.c566 int s, t, smax, tmax; in debug_set_message_enable_all() local
577 tmax = MESA_DEBUG_TYPE_COUNT; in debug_set_message_enable_all()
579 tmax = type+1; in debug_set_message_enable_all()
585 for (t = type; t < tmax; t++) { in debug_set_message_enable_all()
/third_party/mesa3d/src/gallium/auxiliary/nir/
H A Dnir_to_tgsi_info.c578 int tmax = var->data.driver_location + slots - 1; in nir_tgsi_scan_shader() local
579 if (tmax > max) in nir_tgsi_scan_shader()
580 max = tmax; in nir_tgsi_scan_shader()
/third_party/cups-filters/cupsfilters/
H A Dppdgenerator.c2386 char tmax[256], tmin[256]; /* Min/max values */ in ppdCreateFromIPP2() local
2398 _cupsStrFormatd(tmax, tmax + sizeof(tmax), max_width * 72.0 / 2540.0, in ppdCreateFromIPP2()
2403 tmax); in ppdCreateFromIPP2()
2405 _cupsStrFormatd(tmax, tmax + sizeof(tmax), max_length * 72.0 / 2540.0, in ppdCreateFromIPP2()
2410 tmax); in ppdCreateFromIPP2()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/
H A DvktRayTracingBuiltinTests.cpp766 " float tmax = 9.0;\n" in initPrograms()
769 " traceRayEXT(topLevelAS, rayFlags, cullMask, 0, 0, 0, origin, tmin, direct, tmax, 0);\n" in initPrograms()
910 " float tmax = 0.75f + c;\n" in initPrograms()
913 " traceRayEXT(topLevelAS, gl_RayFlagsNoneEXT, cullMask, 0, 0, 0, origin, tmin, direct, tmax, 0);\n" in initPrograms()
2486 src << "struct Ray { vec3 pos; float tmin; vec3 dir; float tmax; };\n"; in generateShaderSource()
2709 << " traceRayEXT(scene, 0, 0xff, 0, 0, 0, ray.pos, ray.tmin, ray.dir, ray.tmax, 0);\n" in initPrograms()
2816 << " traceRayEXT(scene, 0, 0xff, 0, 0, 0, ray.pos, ray.tmin, ray.dir, ray.tmax, 0);\n" in initPrograms()
2937 << " traceRayEXT(scene, 0, 0xff, 0, 0, 0, ray.pos, ray.tmin, ray.dir, ray.tmax, 0);\n" in initPrograms()
3041 << " traceRayEXT(scene, results.flags, 0xff, 0, 0, 0, ray.pos, ray.tmin, ray.dir, ray.tmax, 0);\n" in initPrograms()
3145 << " traceRayEXT(scene, 0, 0xff, 0, 0, 0, ray.pos, ray.tmin, ray.dir, ray.tmax, in initPrograms()
3437 float tmax; global() member
[all...]
H A DvktRayTracingCallableShadersTests.cpp489 " float tmax = 1.0;\n" in initPrograms()
493 " traceRayEXT(topLevelAS, 0, 0xFF, 0, 0, 0, origin, tmin, direct, tmax, 0);\n" in initPrograms()
821 Ray() : o(0.0f), tmin(0.0f), d(0.0f), tmax(0.0f){} in Ray()
822 Ray(const tcu::Vec3& io, float imin, const tcu::Vec3& id, float imax): o(io), tmin(imin), d(id), tmax(imax){} in Ray()
826 float tmax; member
1075 " traceRayEXT(scene, 0x0, 0xff, 0, 0, 0, ray.pos, " << "ray.tmin" << ", ray.dir, ray.tmax, 0);\n"; in getRayGenSource()
1270 src << "struct Ray { vec3 pos; float tmin; vec3 dir; float tmax; };\n"; in generateShaderSource()
H A DvktRayTracingDirectionTests.cpp295 float tmax; member
318 << " float tmax;\n" in initPrograms()
324 << " traceRayEXT(topLevelAS, gl_RayFlagsNoneEXT, cullMask, 0, 0, 0, pc.origin.xyz, pc.tmin, pc.direction.xyz, pc.tmax, 0);\n" in initPrograms()
583 tMinMax.second, // float tmax; in iterate()
/third_party/openssl/ssl/
H A Dssl_sess.c64 time_t tmax = TMAX(_type_); \
65 overflow = (_type_)tmax - (_type_)(_ss_)->time; \
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_query/
H A DvktRayQueryDirectionTests.cpp266 float tmax; member
292 << " float tmax;\n" in initPrograms()
300 << " rayQueryInitializeEXT(rq, topLevelAS, gl_RayFlagsNoneEXT, cullMask, pc.origin.xyz, pc.tmin, pc.direction.xyz, pc.tmax);\n" in initPrograms()
449 tMinMax.second, // float tmax; in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_query/
H A DvktRayQueryDirectionTests.cpp266 float tmax; member
292 << " float tmax;\n" in initPrograms()
300 << " rayQueryInitializeEXT(rq, topLevelAS, gl_RayFlagsNoneEXT, cullMask, pc.origin.xyz, pc.tmin, pc.direction.xyz, pc.tmax);\n" in initPrograms()
449 tMinMax.second, // float tmax; in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_tracing/
H A DvktRayTracingDirectionTests.cpp295 float tmax; member
318 << " float tmax;\n" in initPrograms()
324 << " traceRayEXT(topLevelAS, gl_RayFlagsNoneEXT, cullMask, 0, 0, 0, pc.origin.xyz, pc.tmin, pc.direction.xyz, pc.tmax, 0);\n" in initPrograms()
583 tMinMax.second, // float tmax; in iterate()
/third_party/node/deps/ada/
H A Dada.cpp7972 constexpr int32_t tmax = 26;
7996 while (d > ((base - tmin) * tmax) / 2) {
8038 int32_t t = k <= bias ? tmin : k >= bias + tmax ? tmax : k - bias;
8097 int32_t t = k <= bias ? tmin : k >= bias + tmax ? tmax : k - bias;
8163 int32_t t = k <= bias ? tmin : k >= bias + tmax ? tmax : k - bias;
/third_party/mesa3d/src/amd/compiler/
H A Daco_instruction_selection.cpp6087 Temp tmax = get_ssa_temp(ctx, instr->src[2].ssa);
6095 args.push_back(as_vgpr(ctx, tmax));

Completed in 71 milliseconds