/third_party/libsnd/src/ALAC/ |
H A D | dp_enc.c | 82 int32_t sg, sgn ; in pc_block() local 145 sgn = sign_of_int (b3) ; in pc_block() 146 a3 -= sgn ; in pc_block() 147 del0 -= (4 - 3) * ((sgn * b3) >> denshift) ; in pc_block() 151 sgn = sign_of_int (b2) ; in pc_block() 152 a2 -= sgn ; in pc_block() 153 del0 -= (4 - 2) * ((sgn * b2) >> denshift) ; in pc_block() 157 sgn = sign_of_int (b1) ; in pc_block() 158 a1 -= sgn ; in pc_block() 159 del0 -= (4 - 1) * ((sgn * b in pc_block() [all...] |
H A D | dp_dec.c | 60 int32_t sum1, sg, sgn, top, dd ; in unpc_block() local 139 sgn = sign_of_int (ib3) ; in unpc_block() 140 ia3 -= sgn ; in unpc_block() 141 del0 -= (4 - 3) * ((sgn * ib3) >> denshift) ; in unpc_block() 145 sgn = sign_of_int (ib2) ; in unpc_block() 146 ia2 -= sgn ; in unpc_block() 147 del0 -= (4 - 2) * ((sgn * ib2) >> denshift) ; in unpc_block() 151 sgn = sign_of_int (ib1) ; in unpc_block() 152 ia1 -= sgn ; in unpc_block() 153 del0 -= (4 - 1) * ((sgn * ib in unpc_block() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/ |
H A D | ICUDurationTest.java | 81 ICUTestDuration(int sgn, int y, int months, int d, int h, int m, float s) { in ICUTestDuration() argument 82 sign = sgn; in ICUTestDuration() 92 private ICUTestDuration(int sgn, Map<Field, Number> f) { in ICUTestDuration() argument 93 sign = sgn; in ICUTestDuration() 156 private static final ICUTestDuration newDuration(int sgn, int d, int h, int m, float s) { in newDuration() argument 157 return new ICUTestDuration(sgn, -1, -1, d, h, m, s); in newDuration() 159 private static final ICUTestDuration newDuration(int sgn, int h, int m, float s) { in newDuration() argument 160 return new ICUTestDuration(sgn, -1, -1, -1, h, m, s); in newDuration() 162 private static final ICUTestDuration newDuration(int sgn, float s) { in newDuration() argument 163 return new ICUTestDuration(sgn, in newDuration() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/duration/ |
H A D | ICUDurationTest.java | 84 ICUTestDuration(int sgn, int y, int months, int d, int h, int m, float s) { in ICUTestDuration() argument 85 sign = sgn; in ICUTestDuration() 95 private ICUTestDuration(int sgn, Map<Field, Number> f) { in ICUTestDuration() argument 96 sign = sgn; in ICUTestDuration() 159 private static final ICUTestDuration newDuration(int sgn, int d, int h, int m, float s) { in newDuration() argument 160 return new ICUTestDuration(sgn, -1, -1, d, h, m, s); in newDuration() 162 private static final ICUTestDuration newDuration(int sgn, int h, int m, float s) { in newDuration() argument 163 return new ICUTestDuration(sgn, -1, -1, -1, h, m, s); in newDuration() 165 private static final ICUTestDuration newDuration(int sgn, float s) { in newDuration() argument 166 return new ICUTestDuration(sgn, in newDuration() [all...] |
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_inlines.h | 107 bool flt = false, bool sgn = false) in typeOfSize() 110 case 1: return sgn ? TYPE_S8 : TYPE_U8; in typeOfSize() 111 case 2: return flt ? TYPE_F16 : (sgn ? TYPE_S16 : TYPE_U16); in typeOfSize() 112 case 8: return flt ? TYPE_F64 : (sgn ? TYPE_S64 : TYPE_U64); in typeOfSize() 116 return flt ? TYPE_F32 : (sgn ? TYPE_S32 : TYPE_U32); in typeOfSize()
|
/third_party/ffmpeg/libavcodec/ |
H A D | g726.c | 70 static inline int sgn(int value) in sgn() function 217 pk0 = (c->sez + dq) ? sgn(c->sez + dq) : 0; in g726_decode() 218 dq0 = dq ? sgn(dq) : 0; in g726_decode() 234 c->b[i] += 128*dq0*sgn(-c->dq[i].sign) - (c->b[i]>>8); in g726_decode()
|
/third_party/lame/misc/ |
H A D | mlame_corr.c | 111 int sgn ( long double x ) in sgn() function 136 b = atan2 ( sy, sx * sgn (r) ) * ( 8 / M_PI); in report()
|
H A D | abx.c | 418 int sgn ( double x ) in sgn() function 441 b = sx != 0 ? sy/sx * sgn(r) : 0.l; in report()
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_meta_etc_decode.c | 462 nir_ssa_def *sgn = nir_isub_imm(&b, 1, msb); in build_shader() local 463 sgn = nir_bcsel(&b, nir_load_var(&b, punchthrough), nir_imul(&b, sgn, lsb), sgn); in build_shader() 469 nir_imul(&b, etc1_color_modifier_lookup(&b, etc1_table_index, lsb), sgn); in build_shader()
|
/third_party/alsa-lib/src/pcm/ |
H A D | pcm_plug.c | 235 static int check_linear_format(const snd_pcm_format_mask_t *format_mask, int wid, int sgn, int ed) in check_linear_format() argument 245 f = snd_pcm_build_linear_format(wid, pw, sgn, ed); in check_linear_format() 250 sgn = !sgn; in check_linear_format()
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_tgsi_vgpu10.c | 3432 struct svga_shader_signature *sgn = &emit->signature; in emit_passthrough_control_point_signature() local 3440 sgnEntry = &sgn->inputs[sgn->header.numInputSignatures++]; in emit_passthrough_control_point_signature() 3448 sgnEntry = &sgn->outputs[sgn->header.numOutputSignatures++]; in emit_passthrough_control_point_signature() 3865 struct svga_shader_signature *sgn = &emit->signature; in emit_input_declaration() local 3869 &sgn->patchConstants[sgn->header.numPatchConstantSignatures++]; in emit_input_declaration() 3879 &sgn->inputs[sgn in emit_input_declaration() 3986 struct svga_shader_signature *sgn = &emit->signature; emit_output_declaration() local 4343 struct svga_shader_signature *sgn = &emit->signature; emit_gs_output_declarations() local 4400 struct svga_shader_signature *sgn = &emit->signature; emit_tesslevel_declaration() local 4418 struct svga_shader_signature *sgn = &emit->signature; emit_tcs_output_declarations() local 12783 copy_shader_signature(struct svga_shader_signature *sgn, struct svga_shader_variant *variant) copy_shader_signature() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
H A D | ShaderCore.hpp | 330 void sgn(Vector4f &dst, const Vector4f &src); 370 void sgn(Float4 &dst, const Float4 &src);
|
H A D | ShaderCore.cpp | 1535 void ShaderCore::sgn(Vector4f &dst, const Vector4f &src) in sgn() function in sw::ShaderCore 1537 sgn(dst.x, src.x); in sgn() 1538 sgn(dst.y, src.y); in sgn() 1539 sgn(dst.z, src.z); in sgn() 1540 sgn(dst.w, src.w); in sgn() 1790 void ShaderCore::sgn(Float4 &dst, const Float4 &src) in sgn() function in sw::ShaderCore
|
H A D | VertexProgram.cpp | 278 case Shader::OPCODE_SGN: sgn(d, s0); break; in program()
|
H A D | PixelProgram.cpp | 280 case Shader::OPCODE_SGN: sgn(d, s0); break; in applyShader()
|
/third_party/mesa3d/src/amd/llvm/ |
H A D | ac_llvm_build.c | 807 LLVMValueRef sgn; in build_cube_select() local 823 sgn = LLVMBuildSelect( in build_cube_select() 826 out_st[0] = LLVMBuildFMul(builder, tmp, sgn, ""); in build_cube_select() 830 sgn = LLVMBuildSelect(builder, is_ma_y, sgn_ma, LLVMConstReal(f32, -1.0), ""); in build_cube_select() 831 out_st[1] = LLVMBuildFMul(builder, tmp, sgn, ""); in build_cube_select()
|
/third_party/node/test/fixtures/postject-copy/node_modules/postject/dist/ |
H A D | api.js | [all...] |
/third_party/astc-encoder/Source/ |
H A D | stb_image.h | 2154 int sgn; in stbi__extend_receive() local 2158 sgn = j->code_buffer >> 31; // sign bit always in MSB; 0 if MSB clear (positive), 1 if MSB set (negative) in stbi__extend_receive() 2163 return k + (stbi__jbias[n] & (sgn - 1)); in stbi__extend_receive()
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_instruction_selection.cpp | 9306 Temp sgn = bld.vop2_e64( 9309 *out_sc = bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), tmp, sgn); 9313 sgn = bld.vop2(aco_opcode::v_cndmask_b32, bld.def(v1), neg_one, sgn_ma, is_ma_y); 9314 *out_tc = bld.vop2(aco_opcode::v_mul_f32, bld.def(v1), tmp, sgn);
|
/third_party/sqlite/src/ |
H A D | sqlite3.c | 23668 int sgn = 0; parseTimezone() local [all...] |