/third_party/skia/tests/sksl/intrinsics/ |
D | Modf.metal | 13 float _skOutParamHelper0_modf(float _var0, thread float4& whole) { 16 whole.x = _var1; 19 float2 _skOutParamHelper1_modf(float2 _var0, thread float4& whole) { 22 whole.xy = _var1; 25 float3 _skOutParamHelper2_modf(float3 _var0, thread float4& whole) { 28 whole.xyz = _var1; 31 float4 _skOutParamHelper3_modf(float4 _var0, thread float4& whole) { 34 whole = _var1; 44 float4 whole; 46 fraction.x = _skOutParamHelper0_modf(value.x, whole); [all …]
|
D | Modf.glsl | 10 vec4 whole; 12 fraction.x = modf(value.x, whole.x); 13 ok.x = whole.x == 2.0 && fraction.x == 0.5; 14 fraction.xy = modf(value.xy, whole.xy); 15 ok.y = whole.xy == vec2(2.0, -2.0) && fraction.xy == vec2(0.5, -0.5); 16 fraction.xyz = modf(value.xyz, whole.xyz); 17 ok.z = whole.xyz == vec3(2.0, -2.0, 8.0) && fraction.xyz == vec3(0.5, -0.5, 0.0); 18 fraction = modf(value, whole); 19 ok.w = whole == expectedWhole && fraction == expectedFraction;
|
D | Modf.asm.frag | 17 OpName %whole "whole" 98 %whole = OpVariable %_ptr_Function_v4float Function 110 %51 = OpAccessChain %_ptr_Function_float %whole %int_0 116 %58 = OpLoad %v4float %whole 134 %74 = OpLoad %v4float %whole 136 OpStore %whole %75 140 %78 = OpLoad %v4float %whole 160 %101 = OpLoad %v4float %whole 162 OpStore %whole %102 166 %105 = OpLoad %v4float %whole [all …]
|
/third_party/skia/resources/sksl/intrinsics/ |
D | Modf.sksl | 8 float4 whole, fraction; 10 fraction.x = modf(value.x, whole.x); 11 ok.x = whole.x == expectedWhole.x && fraction.x == expectedFraction.x; 12 fraction.xy = modf(value.xy, whole.xy); 13 ok.y = whole.xy == expectedWhole.xy && fraction.xy == expectedFraction.xy; 14 fraction.xyz = modf(value.xyz, whole.xyz); 15 ok.z = whole.xyz == expectedWhole.xyz && fraction.xyz == expectedFraction.xyz; 16 fraction.xyzw = modf(value.xyzw, whole.xyzw); 17 ok.w = whole.xyzw == expectedWhole.xyzw && fraction.xyzw == expectedFraction.xyzw;
|
/third_party/skia/third_party/externals/tint/test/intrinsics/gen/modf/ |
D | 9b75f7.wgsl.expected.glsl | 8 vec3 whole; 11 float3 whole; 12 float3 fract = modf(param_0, whole); 13 modf_result_vec3 result = {fract, whole}; 57 vec3 whole; 60 float3 whole; 61 float3 fract = modf(param_0, whole); 62 modf_result_vec3 result = {fract, whole}; 96 vec3 whole; 99 float3 whole; [all …]
|
D | 180fed.wgsl.expected.glsl | 8 float whole; 11 float whole; 12 float fract = modf(param_0, whole); 13 modf_result result = {fract, whole}; 57 float whole; 60 float whole; 61 float fract = modf(param_0, whole); 62 modf_result result = {fract, whole}; 96 float whole; 99 float whole; [all …]
|
D | f5f20d.wgsl.expected.glsl | 8 vec2 whole; 11 float2 whole; 12 float2 fract = modf(param_0, whole); 13 modf_result_vec2 result = {fract, whole}; 57 vec2 whole; 60 float2 whole; 61 float2 fract = modf(param_0, whole); 62 modf_result_vec2 result = {fract, whole}; 96 vec2 whole; 99 float2 whole; [all …]
|
D | ec2dbc.wgsl.expected.glsl | 8 vec4 whole; 11 float4 whole; 12 float4 fract = modf(param_0, whole); 13 modf_result_vec4 result = {fract, whole}; 57 vec4 whole; 60 float4 whole; 61 float4 fract = modf(param_0, whole); 62 modf_result_vec4 result = {fract, whole}; 96 vec4 whole; 99 float4 whole; [all …]
|
D | 9b75f7.wgsl.expected.msl | 7 float3 whole; 10 float3 whole; 11 float3 fract = modf(param_0, whole); 12 return {fract, whole};
|
D | 180fed.wgsl.expected.msl | 7 float whole; 10 float whole; 11 float fract = modf(param_0, whole); 12 return {fract, whole};
|
D | ec2dbc.wgsl.expected.msl | 7 float4 whole; 10 float4 whole; 11 float4 fract = modf(param_0, whole); 12 return {fract, whole};
|
D | 180fed.wgsl.expected.hlsl | 3 float whole; 6 float whole; 7 float fract = modf(param_0, whole); 8 modf_result result = {fract, whole};
|
D | f5f20d.wgsl.expected.msl | 7 float2 whole; 10 float2 whole; 11 float2 fract = modf(param_0, whole); 12 return {fract, whole};
|
D | 9b75f7.wgsl.expected.hlsl | 3 float3 whole; 6 float3 whole; 7 float3 fract = modf(param_0, whole); 8 modf_result_vec3 result = {fract, whole};
|
D | f5f20d.wgsl.expected.hlsl | 3 float2 whole; 6 float2 whole; 7 float2 fract = modf(param_0, whole); 8 modf_result_vec2 result = {fract, whole};
|
D | ec2dbc.wgsl.expected.hlsl | 3 float4 whole; 6 float4 whole; 7 float4 fract = modf(param_0, whole); 8 modf_result_vec4 result = {fract, whole};
|
/third_party/skia/third_party/externals/tint/test/intrinsics/ |
D | modf.wgsl.expected.hlsl | 3 float whole; 6 float whole; 7 float fract = modf(param_0, whole); 8 modf_result result = {fract, whole}; 16 const float whole = res.whole;
|
D | modf.wgsl.expected.msl | 7 float whole; 10 float whole; 11 float fract = modf(param_0, whole); 12 return {fract, whole}; 18 float const whole = res.whole;
|
D | modf.wgsl.expected.glsl | 8 float whole; 11 float whole; 12 float fract = modf(param_0, whole); 13 modf_result result = {fract, whole}; 22 float whole = res.whole;
|
D | modf.wgsl.expected.wgsl | 5 let whole : f32 = res.whole;
|
/third_party/skia/third_party/externals/tint/test/bug/chromium/ |
D | 1236161.wgsl.expected.msl | 7 float whole; 10 float whole; 11 float fract = modf(param_0, whole); 12 return {fract, whole}; 16 float const s = tint_modf(1.0f).whole;
|
D | 1236161.wgsl.expected.hlsl | 3 float whole; 6 float whole; 7 float fract = modf(param_0, whole); 8 modf_result result = {fract, whole}; 18 const float s = tint_modf(1.0f).whole;
|
/third_party/node/ |
D | node.gypi | 7 # --whole-archive,force_load and /WHOLEARCHIVE are used to include 161 '-Wl,--whole-archive', 163 '-Wl,--no-whole-archive', 200 '-Wl,--whole-archive', 202 '-Wl,--no-whole-archive', 287 '-Wl,--whole-archive <(v8_base)', 288 '-Wl,--no-whole-archive', 361 # -force_load or --whole-archive are not applicable for 379 '-Wl,--whole-archive,' 381 '-Wl,--no-whole-archive',
|
/third_party/elfutils/libdwfl/ |
D | gzip.c | 83 void **whole; member 116 *state->whole = state->input_buffer; in fail() 120 *state->whole = NULL; in fail() 189 .whole = _whole, in unzip() 198 if (*state.whole == NULL) in unzip() 214 state.input_buffer = *state.whole; in unzip() 398 *state.whole = state.buffer; in unzip()
|
/third_party/typescript/tests/baselines/reference/ |
D | destructionAssignmentError.errors.txt | 2 …ended to write a destructuring assignment, you might need to wrap the the whole assignment in pare… 4 …ended to write a destructuring assignment, you might need to wrap the the whole assignment in pare… 17 …ended to write a destructuring assignment, you might need to wrap the the whole assignment in pare… 27 …ended to write a destructuring assignment, you might need to wrap the the whole assignment in pare…
|