Home
last modified time | relevance | path

Searched refs:src_m (Results 1 – 25 of 87) sorted by relevance

1234

/dports/lang/gomacro/gomacro-2.7-304-g2f4dc7c/jit/amd64/
H A Dmul.go91 func (arch Amd64) mul2MemReg(asm *Asm, src_m Mem, dst Reg) Amd64 {
92 sregid := src_m.RegId()
95 offlen, offbit := offlen(src_m, sregid)
101 r := asm.RegAlloc(src_m.Kind())
102 arch.load(asm, src_m, r).mul2RegReg(asm, r, dst)
120 asm.Int8(int8(src_m.Offset()))
122 asm.Int32(src_m.Offset())
239 sregid := src_m.RegId()
242 offlen, offbit := offlen(src_m, sregid)
261 asm.Int8(int8(src_m.Offset()))
[all …]
H A Dshift.go185 func (arch Amd64) shiftMemReg(asm *Asm, op Op2, src_m Mem, dst Reg) Amd64 {
187 errorf("unimplemented shift RCX by Mem: %v %v %v", op, src_m, dst)
189 r := MakeReg(RCX, src_m.Kind())
190 arch.op2MemReg(asm, MOV, src_m, r)
196 func (arch Amd64) shiftMemMem(asm *Asm, op Op2, src_m Mem, dst_m Mem) Amd64 {
198 errorf("unimplemented shift Mem[RCX] by Mem: %v %v %v", op, src_m, dst_m)
199 } else if src_m.RegId() == RCX {
200 errorf("unimplemented shift Mem by Mem[RCX]: %v %v %v", op, src_m, dst_m)
202 r := MakeReg(RCX, src_m.Kind())
203 arch.op2MemReg(asm, MOV, src_m, r)
H A Dop4.go38 src_m := a.(Mem)
50 return arch.op2MemReg(asm, LEA2, src_m, dreg)
51 } else if src_m.RegId() == NoRegId && scale == 1 {
52 return arch.op2MemReg(asm, LEA2, MakeMem(src_m.Offset(), reg.RegId(), src_m.Kind()), dreg)
54 return arch.lea4(asm, src_m, reg, scale, dreg)
H A Dmov.go237 func (arch Amd64) castMemReg(asm *Asm, src_m Mem, dst Reg) Amd64 {
238 sregid := src_m.RegId()
239 skind := src_m.Kind()
247 offlen, offbit := offlen(src_m, sregid)
262 asm.Int8(int8(src_m.Offset()))
264 asm.Int32(src_m.Offset())
275 arch.op2MemReg(asm, MOV, src_m, MakeReg(dst.RegId(), skind))
279 skind.Size(), CAST, src_m, dst)
286 asm.Int8(int8(src_m.Offset()))
288 asm.Int32(src_m.Offset())
H A Dop2.go350 return arch.mul2MemReg(asm, src_m, dst)
352 return arch.shiftMemReg(asm, op, src_m, dst)
355 sregid := src_m.RegId()
359 assert(SizeOf(src_m) == SizeOf(dst))
360 siz := SizeOf(src_m)
361 offlen, offbit := offlen(src_m, sregid)
392 asm.Int8(int8(src_m.Offset()))
394 asm.Int32(src_m.Offset())
403 return arch.mul2MemMem(asm, src_m, dst_m)
410 r := asm.RegAlloc(src_m.Kind())
[all …]
/dports/audio/lmms/lmms-1.2.2/plugins/LadspaEffect/swh/
H A Dvynil_1905.c350 float src_m, src_s; in runVynil() local
401src_m = biquad_run(lowp_m, src_m + click_buffer[click_buffer_pos.part.in & (CLICK_BUF_SIZE - 1)] *… in runVynil()
404 src_m = LIN_INTERP(age, src_m, sinf(src_m * wrap_gain + wrap_bias)); in runVynil()
407src_m = biquad_run(highp, src_m) + biquad_run(noise_filt, noise()) * noise_amp + click_buffer[clic… in runVynil()
412 buffer_write(out_l[pos], (src_s + src_m) * 0.5f); in runVynil()
413 buffer_write(out_r[pos], (src_m - src_s) * 0.5f); in runVynil()
498 float src_m, src_s; in runAddingVynil() local
549src_m = biquad_run(lowp_m, src_m + click_buffer[click_buffer_pos.part.in & (CLICK_BUF_SIZE - 1)] *… in runAddingVynil()
552 src_m = LIN_INTERP(age, src_m, sinf(src_m * wrap_gain + wrap_bias)); in runAddingVynil()
560 buffer_write(out_l[pos], (src_s + src_m) * 0.5f); in runAddingVynil()
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libc/src/string/
H A Dmemmove.cpp18 static inline void move_byte_forward(char *dest_m, const char *src_m, in move_byte_forward() argument
21 dest_m[offset] = src_m[offset]; in move_byte_forward()
24 static inline void move_byte_backward(char *dest_m, const char *src_m, in move_byte_backward() argument
27 dest_m[offset] = src_m[offset]; in move_byte_backward()
/dports/devel/llvm12/llvm-project-12.0.1.src/libc/src/string/
H A Dmemmove.cpp17 static inline void move_byte_forward(char *dest_m, const char *src_m, in move_byte_forward() argument
20 dest_m[offset] = src_m[offset]; in move_byte_forward()
23 static inline void move_byte_backward(char *dest_m, const char *src_m, in move_byte_backward() argument
26 dest_m[offset] = src_m[offset]; in move_byte_backward()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libc/src/string/
H A Dmemmove.cpp18 static inline void move_byte_forward(char *dest_m, const char *src_m, in move_byte_forward() argument
21 dest_m[offset] = src_m[offset]; in move_byte_forward()
24 static inline void move_byte_backward(char *dest_m, const char *src_m, in move_byte_backward() argument
27 dest_m[offset] = src_m[offset]; in move_byte_backward()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libc/src/string/
H A Dmemmove.cpp18 static inline void move_byte_forward(char *dest_m, const char *src_m, in move_byte_forward() argument
21 dest_m[offset] = src_m[offset]; in move_byte_forward()
24 static inline void move_byte_backward(char *dest_m, const char *src_m, in move_byte_backward() argument
27 dest_m[offset] = src_m[offset]; in move_byte_backward()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/libc/src/string/
H A Dmemmove.cpp17 static inline void move_byte_forward(char *dest_m, const char *src_m, in move_byte_forward() argument
20 dest_m[offset] = src_m[offset]; in move_byte_forward()
23 static inline void move_byte_backward(char *dest_m, const char *src_m, in move_byte_backward() argument
26 dest_m[offset] = src_m[offset]; in move_byte_backward()
/dports/devel/llvm13/llvm-project-13.0.1.src/libc/src/string/
H A Dmemmove.cpp18 static inline void move_byte_forward(char *dest_m, const char *src_m,
21 dest_m[offset] = src_m[offset];
24 static inline void move_byte_backward(char *dest_m, const char *src_m,
27 dest_m[offset] = src_m[offset];
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/langtools/tools/javac/modules/
H A DSourceInSymlinkTest.java53 Path src_m = src.resolve("m"); in testModuleSourcePath() local
54 tb.writeFile(src_m.resolve("module-info.java"), "module m { }"); in testModuleSourcePath()
55 tb.writeJavaFiles(src_m, "package p; public class A{}"); in testModuleSourcePath()
63 .files(src_m.resolve("p/A.java")) in testModuleSourcePath()
H A DHelloWorldTest.java126 Path src_m = src.resolve("m"); in testModuleSourcePath() local
127 tb.writeFile(src_m.resolve("module-info.java"), "module m { }"); in testModuleSourcePath()
128 tb.writeJavaFiles(src_m, PKG_HELLO_WORLD); in testModuleSourcePath()
136 .files(src_m.resolve("p/HelloWorld.java")) in testModuleSourcePath()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/langtools/tools/javac/modules/
H A DSourceInSymlinkTest.java53 Path src_m = src.resolve("m"); in testModuleSourcePath() local
54 tb.writeFile(src_m.resolve("module-info.java"), "module m { }"); in testModuleSourcePath()
55 tb.writeJavaFiles(src_m, "package p; public class A{}"); in testModuleSourcePath()
63 .files(src_m.resolve("p/A.java")) in testModuleSourcePath()
H A DHelloWorldTest.java126 Path src_m = src.resolve("m"); in testModuleSourcePath() local
127 tb.writeFile(src_m.resolve("module-info.java"), "module m { }"); in testModuleSourcePath()
128 tb.writeJavaFiles(src_m, PKG_HELLO_WORLD); in testModuleSourcePath()
136 .files(src_m.resolve("p/HelloWorld.java")) in testModuleSourcePath()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/langtools/tools/javac/modules/
H A DSourceInSymlinkTest.java53 Path src_m = src.resolve("m"); in testModuleSourcePath() local
54 tb.writeFile(src_m.resolve("module-info.java"), "module m { }"); in testModuleSourcePath()
55 tb.writeJavaFiles(src_m, "package p; public class A{}"); in testModuleSourcePath()
63 .files(src_m.resolve("p/A.java")) in testModuleSourcePath()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/langtools/tools/javac/modules/
H A DSourceInSymlinkTest.java53 Path src_m = src.resolve("m"); in testModuleSourcePath() local
54 tb.writeFile(src_m.resolve("module-info.java"), "module m { }"); in testModuleSourcePath()
55 tb.writeJavaFiles(src_m, "package p; public class A{}"); in testModuleSourcePath()
63 .files(src_m.resolve("p/A.java")) in testModuleSourcePath()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/langtools/tools/javac/modules/
H A DSourceInSymlinkTest.java53 Path src_m = src.resolve("m"); in testModuleSourcePath() local
54 tb.writeFile(src_m.resolve("module-info.java"), "module m { }"); in testModuleSourcePath()
55 tb.writeJavaFiles(src_m, "package p; public class A{}"); in testModuleSourcePath()
63 .files(src_m.resolve("p/A.java")) in testModuleSourcePath()
H A DHelloWorldTest.java126 Path src_m = src.resolve("m"); in testModuleSourcePath() local
127 tb.writeFile(src_m.resolve("module-info.java"), "module m { }"); in testModuleSourcePath()
128 tb.writeJavaFiles(src_m, PKG_HELLO_WORLD); in testModuleSourcePath()
136 .files(src_m.resolve("p/HelloWorld.java")) in testModuleSourcePath()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/langtools/tools/javac/modules/
H A DSourceInSymlinkTest.java53 Path src_m = src.resolve("m"); in testModuleSourcePath() local
54 tb.writeFile(src_m.resolve("module-info.java"), "module m { }"); in testModuleSourcePath()
55 tb.writeJavaFiles(src_m, "package p; public class A{}"); in testModuleSourcePath()
63 .files(src_m.resolve("p/A.java")) in testModuleSourcePath()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/langtools/tools/javac/modules/
H A DSourceInSymlinkTest.java53 Path src_m = src.resolve("m"); in testModuleSourcePath() local
54 tb.writeFile(src_m.resolve("module-info.java"), "module m { }"); in testModuleSourcePath()
55 tb.writeJavaFiles(src_m, "package p; public class A{}"); in testModuleSourcePath()
63 .files(src_m.resolve("p/A.java")) in testModuleSourcePath()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/langtools/tools/javac/modules/
H A DSourceInSymlinkTest.java53 Path src_m = src.resolve("m"); in testModuleSourcePath() local
54 tb.writeFile(src_m.resolve("module-info.java"), "module m { }"); in testModuleSourcePath()
55 tb.writeJavaFiles(src_m, "package p; public class A{}"); in testModuleSourcePath()
63 .files(src_m.resolve("p/A.java")) in testModuleSourcePath()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/langtools/jdk/javadoc/doclet/testGeneratedClasses/
H A DTestGeneratedClasses.java51 Path src_m = src.resolve("m"); in testClasses() local
52 tb.writeJavaFiles(src_m, in testClasses()
57 "--source-path", src_m.toString(), in testClasses()
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/mkldnn/tests/benchdnn/conv/
H A Dref_conv.cpp25 dnnl_primitive_t prim_ref, dnn_mem_t &src_m, dnn_mem_t &wei_m, in exec_conv() argument
37 src_m.md_, engine_ref, (void *)src_m); in exec_conv()
86 dnn_mem_t &src_m, dnn_mem_t &wei_m, dnn_mem_t &bia_m, in compute_ref_fwd() argument
93 compute_wino_ref_fwd(prb, src_m, wei_m, bia_m, dst_m); in compute_ref_fwd()
116 dnn_mem_t &src_m, dnn_mem_t &diff_wei_m, dnn_mem_t &diff_bia_m, in compute_ref_bwd_w() argument
127 prb, src_m, diff_wei_m, diff_bia_m, diff_dst_m); in compute_ref_bwd_w()
131 void compute_ref_direct_fwd(const prb_t *prb, dnn_mem_t &src_m, in compute_ref_direct_fwd() argument
358 void compute_ref_bwd_weights(const prb_t *prb, dnn_mem_t &src_m, in compute_ref_bwd_weights() argument
393 const float *__restrict src_loc = (const float *)src_m in compute_ref_bwd_weights()
442 void compute_ref_direct_bwd_w(const prb_t *prb, dnn_mem_t &src_m, in compute_ref_direct_bwd_w() argument
[all …]

1234