Home
last modified time | relevance | path

Searched refs:float (Results 1 – 25 of 483) sorted by relevance

12345678910>>...20

/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Dcmath51 float acosf(float x);
55 float asinf(float x);
59 float atanf(float x);
63 float atan2f(float y, float x);
67 float ceilf(float x);
71 float cosf(float x);
75 float coshf(float x);
79 float expf(float x);
83 float fabsf(float x);
87 float floorf(float x);
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Dcmath51 float acosf(float x);
55 float asinf(float x);
59 float atanf(float x);
63 float atan2f(float y, float x);
67 float ceilf(float x);
71 float cosf(float x);
75 float coshf(float x);
79 float expf(float x);
83 float fabsf(float x);
87 float floorf(float x);
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/vk-gl-cts/files/
H A D0001-Workaround-for-GCC-11-uninit-variable-warnings-946.patch29 @@ -75,8 +76,11 @@ float HexFloat16ToFloat(const uint8_t* value) {
33 - float* hex_float = reinterpret_cast<float*>(&hex);
35 + float hex_float;
36 + static_assert((sizeof(uint32_t) == sizeof(float)),
37 + "sizeof(uint32_t) != sizeof(float)");
38 + memcpy(&hex_float, &hex, sizeof(float));
42 // Convert float |value| whose size is 11 bits to 32 bits float
43 @@ -89,8 +93,11 @@ float HexFloat11ToFloat(const uint8_t* value) {
47 - float* hex_float = reinterpret_cast<float*>(&hex);
49 + float hex_float;
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/glm/glm/
H A D0001-Silence-clang-warnings.patch18 | float result = 0.f;
61 const float begin = -glm::pi<float>();
62 const float end = glm::pi<float>();
63 - float result = 0.f;
66 for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i += 0.1f)
71 for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i += 0.1f)
79 const float begin = -glm::pi<float>();
80 const float end = glm::pi<float>();
81 - float result = 0.f;
84 for(float i = begin; i < end; i = NextFloat ? glm::nextFloat(i) : i += 0.1f)
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/imxwayland/qmlvideofx/shaders/
H A Dpagecurl.fsh36 uniform float dividerValue;
37 uniform float curlExtent;
39 uniform lowp float qt_Opacity;
42 const float minAmount = -0.16;
43 const float maxAmount = 1.3;
44 const float PI = 3.141592653589793;
45 const float scale = 512.0;
46 const float sharpness = 3.0;
49 float amount = curlExtent * (maxAmount - minAmount) + minAmount;
50 float cylinderCenter = amount;
[all …]
H A Dtoon.fsh36 uniform float dividerValue;
37 uniform float threshold;
38 uniform float resS;
39 uniform float resT;
40 uniform float magTol;
41 uniform float quantize;
44 uniform lowp float qt_Opacity;
58 float i00 = dot( texture2D(source, st).rgb, vec3(0.2125,0.7154,0.0721));
59 float im1m1 = dot( texture2D(source, st-stpp).rgb, vec3(0.2125,0.7154,0.0721));
60 float ip1p1 = dot( texture2D(source, st+stpp).rgb, vec3(0.2125,0.7154,0.0721));
[all …]
H A Dripple.fsh36 uniform float dividerValue;
37 uniform float targetWidth;
38 uniform float targetHeight;
39 uniform float time;
42 uniform lowp float qt_Opacity;
45 const float PI = 3.1415926535;
47 const float RATE = 0.1;
48 uniform float amplitude;
49 uniform float n;
50 uniform float pixDens;
[all …]
H A Dsobeledgedetection1.fsh36 uniform float dividerValue;
37 uniform float mixLevel;
38 uniform float resS;
39 uniform float resT;
42 uniform lowp float qt_Opacity;
57 float i00 = dot(texture2D(source, st).rgb, W);
58 float im1m1 = dot(texture2D(source, st-stpp).rgb, W);
59 float ip1p1 = dot(texture2D(source, st+stpp).rgb, W);
60 float im1p1 = dot(texture2D(source, st-stpm).rgb, W);
61 float ip1m1 = dot(texture2D(source, st+stpm).rgb, W);
[all …]
H A Dbillboard.fsh36 uniform float grid;
37 uniform float dividerValue;
38 uniform float step_x;
39 uniform float step_y;
42 uniform lowp float qt_Opacity;
48 float offx = floor(uv.x / (grid * step_x));
49 float offy = floor(uv.y / (grid * step_y));
53 float rs = pow(0.45, 2.0);
54 float gr = smoothstep(rs - 0.1, rs + 0.1, pw.x + pw.y);
55 float y = (res.r + res.g + res.b) / 3.0;
[all …]
H A Disolate.fsh36 uniform float targetHue;
37 uniform float windowWidth;
38 uniform float dividerValue;
41 uniform lowp float qt_Opacity;
44 void rgb2hsl(vec3 rgb, out float h, out float s, float l)
46 float maxval = max(rgb.r, max(rgb.g, rgb.b));
47 float minval = min(rgb.r, min(rgb.g, rgb.b));
48 float delta = maxval - minval;
70 float h, s, l;
72 float h2 = (h > targetHue) ? h - 360.0 : h + 360.0;
[all …]
H A Dshockwave.fsh36 uniform float centerX;
37 uniform float centerY;
38 uniform float dividerValue;
39 uniform float granularity;
40 uniform float time;
41 uniform float weight;
44 uniform lowp float qt_Opacity;
54 float distance = distance(uv, center);
57 float diff = (distance - time);
58 float powDiff = 1.0 - pow(abs(diff*shock.x), shock.y*weight);
[all …]
H A Dmagnify.fsh37 uniform lowp float qt_Opacity;
39 uniform float radius;
40 uniform float diffractionIndex;
41 uniform float targetWidth;
42 uniform float targetHeight;
43 uniform float posX;
44 uniform float posY;
45 uniform float pixDens;
54 float r = sqrt(xy.x * xy.x + xy.y * xy.y);
56 float h = diffractionIndex * 0.5 * radius;
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/tr1/
H A Dcmath494 inline float
495 acosh(float __x)
510 inline float
511 asinh(float __x)
526 inline float
527 atanh(float __x)
542 inline float
543 cbrt(float __x)
558 inline float
559 copysign(float __x, float __y)
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/tr1/
H A Dcmath494 inline float
495 acosh(float __x)
510 inline float
511 asinh(float __x)
526 inline float
527 atanh(float __x)
542 inline float
543 cbrt(float __x)
558 inline float
559 copysign(float __x, float __y)
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/
H A Dcmath86 inline _GLIBCXX_CONSTEXPR float
87 acos(float __x)
105 inline _GLIBCXX_CONSTEXPR float
106 asin(float __x)
124 inline _GLIBCXX_CONSTEXPR float
125 atan(float __x)
143 inline _GLIBCXX_CONSTEXPR float
144 atan2(float __y, float __x)
164 inline _GLIBCXX_CONSTEXPR float
165 ceil(float __x)
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/
H A Dcmath86 inline _GLIBCXX_CONSTEXPR float
87 acos(float __x)
105 inline _GLIBCXX_CONSTEXPR float
106 asin(float __x)
124 inline _GLIBCXX_CONSTEXPR float
125 atan(float __x)
143 inline _GLIBCXX_CONSTEXPR float
144 atan2(float __y, float __x)
164 inline _GLIBCXX_CONSTEXPR float
165 ceil(float __x)
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/libmodbus/libmodbus/
H A DFix-float-endianness-issue-on-big-endian-arch.patch3 Subject: Fix float endianness issue on big endian arch
5 It converts float values depending on what order they come in.
21 @@ -119,9 +119,18 @@ float modbus_get_float_abcd(const uint16_t *src)
23 float f;
28 - memcpy(&f, &i, sizeof(float));
42 @@ -131,9 +140,18 @@ float modbus_get_float_dcba(const uint16_t *src)
44 float f;
49 - memcpy(&f, &i, sizeof(float));
63 @@ -143,9 +161,18 @@ float modbus_get_float_badc(const uint16_t *src)
65 float f;
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/ftgl/ftgl/
H A D0001-Explicit-typecast-to-avoid-implicit-double-to-float-.patch4 Subject: [PATCH] Explicit typecast to avoid implicit double to float
10 'float' in initializer list [-Wc++11-narrowing]
24 float t2 = sin(n / 50 + 1);
25 float t3 = sin(n / 30 + 2);
27 - float ambient[4] = { (t1 + 2.0) / 3,
30 + float ambient[4] = { float(t1 + 2.0) / 3,
31 + float(t2 + 2.0) / 3,
32 + float(t3 + 2.0) / 3, 0.3 };
33 float diffuse[4] = { 1.0, 0.9, 0.9, 1.0 };
34 float specular[4] = { 1.0, 0.7, 0.7, 1.0 };
[all …]
/OK3568_Linux_fs/external/rknn-toolkit2/examples/
H A Dreadme.txt4 │ ├── mobilenet_v2 # mobilenet_v2 float model
5 │ └── vgg-ssd # vgg-ssd float model
7 │ ├── resnet50v2 # resnet50v2 float model
8 │ └── yolov5 # yolov5 float model
10 │ ├── resnet18 # resnet18 float model
14 │ ├── ssd_mobilenet_v1 # ssd_mobilenet_v1 float model
17 │ ├── mobilenet_v1 # mobilenet_v1 float model
20 │ └── yolov3_416x416 # yolov3 float model
24 ├── multi_input_test # multi-input float model
/OK3568_Linux_fs/buildroot/toolchain/toolchain-external/toolchain-external-codescape-mti-mips/
H A DConfig.in22 Disable 'Use soft-float'
26 Disable 'Use soft-float'
31 Enable 'Use soft-float'
35 Disable 'Use soft-float'
39 Disable 'Use soft-float'
44 Enable 'Use soft-float'
49 Enable 'Use soft-float'
55 Disable 'Use soft-float'
61 Disable 'Use soft-float'
66 Disable 'Use soft-float'
[all …]
/OK3568_Linux_fs/buildroot/package/weston/
H A D0076-HACK-Honour-cursor-size-config.patch41 + float scale;
59 + float scale;
91 - float sx, float sy, float *bx, float *by)
95 + float scale,
96 + float sx, float sy, float *bx, float *by)
108 + float sx, float sy, float *bx, float *by)
129 + float scale,
132 float x1, x2, y1, y2;
199 + float scale)
227 + float scale;
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_11.0.1/
H A D0077-HACK-Honour-cursor-size-config.patch41 + float scale;
59 + float scale;
91 - float sx, float sy, float *bx, float *by)
95 + float scale,
96 + float sx, float sy, float *bx, float *by)
108 + float sx, float sy, float *bx, float *by)
129 + float scale,
132 float x1, x2, y1, y2;
199 + float scale)
227 + float scale;
/OK3568_Linux_fs/buildroot/toolchain/toolchain-external/toolchain-external-codescape-img-mips/
H A DConfig.in21 Disable 'Use soft-float'
25 Enable 'Use soft-float'
29 Disable 'Use soft-float'
33 Enable 'Use soft-float'
38 Disable 'Use soft-float'
44 Enable 'Use soft-float'
50 Disable 'Use soft-float'
55 Disable 'Use soft-float'
60 Disable 'Use soft-float'
65 Disable 'Use soft-float'
/OK3568_Linux_fs/buildroot/package/mupdf/
H A D0003-Bug-703791-Stay-within-hash-table-max-key-size-in-cached-color-converter.patch34 … void fz_cached_color_convert(fz_context *ctx, fz_color_converter *cc_, const float *ss, float *ds)
37 - float *val = fz_hash_find(ctx, cc->hash, ss);
38 - int n = cc->base.ds->n * sizeof(float);
46 + float *val = fz_hash_find(ctx, cc->hash, ss);
47 + int n = cc->base.ds->n * sizeof(float);
56 - val = Memento_label(fz_malloc_array(ctx, cc->base.ds->n, float), "cached_color_convert");
64 + val = Memento_label(fz_malloc_array(ctx, cc->base.ds->n, float), "cached_color_convert");
82 - cached->hash = fz_new_hash_table(ctx, 256, n * sizeof(float), -1, fz_free);
83 + if (n * sizeof(float) <= FZ_HASH_TABLE_KEY_LENGTH)
84 + cached->hash = fz_new_hash_table(ctx, 256, n * sizeof(float), -1, fz_free);
/OK3568_Linux_fs/buildroot/package/llvm/
H A D0002-No-longer-generate-calls-to-_finite.patch38 test/CodeGen/AArch64/illegal-float-ops.ll | 24 +++----
172 diff --git a/test/CodeGen/AArch64/illegal-float-ops.ll b/test/CodeGen/AArch64/illegal-float-ops.ll
174 --- a/test/CodeGen/AArch64/illegal-float-ops.ll
175 +++ b/test/CodeGen/AArch64/illegal-float-ops.ll
181 @varfloat = global float 0.0
249 define float @exp_f32(float %x) #0 {
257 @@ -25,7 +25,7 @@ define float @exp_f32(float %x) #0 {
276 define float @exp2_f32(float %x) #0 {
284 @@ -96,7 +96,7 @@ define float @exp2_f32(float %x) #0 {
303 define float @log_f32(float %x) #0 {
[all …]

12345678910>>...20