- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for Pc (0.1 sec)
-
src/cmd/asm/internal/asm/testdata/386.s
CMPB foo+4(SB), $4 CMPB BX, AX CMPB foo+4(SB), BX // LTYPER nonrel { outcode(int($1), &$2); } label: JC label // JCS JC -1(PC) // JCS -1(PC) // LTYPEC spec3 { outcode(int($1), &$2); } CALL AX JCS 2(PC) JMP *AX // JMP AX CALL *foo(SB) JCS 2(PC) JMP $4 JCS 2(PC) JMP label // JMP 16 CALL foo(SB) // CALL (AX*4) // TODO: This line is silently dropped on the floor! CALL foo+4(SB)(AX*4)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Apr 09 18:57:21 UTC 2019 - 2K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/mips.s
// } BEQ R1, 2(PC) label0: JMP 1(PC) BEQ R1, 2(PC) JMP label0+0 // JMP 66 BEQ R1, 2(PC) JAL 1(PC) // CALL 1(PC) BEQ R1, 2(PC) JAL label0+0 // CALL 66 // LBRA addr // { // outcode(int($1), &nullgen, 0, &$2); // } BEQ R1, 2(PC) JMP 0(R1) // JMP (R1) BEQ R1, 2(PC) JMP foo+0(SB) // JMP foo(SB) BEQ R1, 2(PC) JAL 0(R1) // CALL (R1) BEQ R1, 2(PC)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Aug 08 12:17:12 UTC 2023 - 6.7K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/amd64.s
// LTYPER nonrel { outcode($1, &$2); } label: JB -4(PC) // JCS -4(PC) JB label // JCS 17 // LTYPEC spec3 { outcode($1, &$2); } JCS 2(PC) JMP -4(PC) JCS 2(PC) JMP label // JMP 17 JCS 2(PC) JMP foo+4(SB) JCS 2(PC) JMP bar<>+4(SB) JCS 2(PC) JMP bar<>+4(SB)(R11*4) JCS 2(PC) JMP *4(SP) // JMP 4(SP) JCS 2(PC) JMP *(R12) // JMP (R12) JCS 2(PC)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Apr 09 18:57:21 UTC 2019 - 3.3K bytes - Viewed (0) -
compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java
assertEquals(1, md.getMojoConfiguration().getChildCount()); PlexusConfiguration pc = md.getMojoConfiguration().getChild(0); assertEquals("${jar.finalName}", pc.getValue()); assertEquals("${project.build.finalName}", pc.getAttribute("default-value")); assertEquals("java.lang.String", pc.getAttribute("implementation")); Parameter mp = md.getParameters().get(0);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
src/cmd/addr2line/main.go
// Reverse translate file:line to pc. // This was an extension in the old C version of 'go tool addr2line' // and is probably not used by anyone, but recognize the syntax. // We don't have an implementation. fmt.Fprintf(stdout, "!reverse translation not implemented\n") continue } pc, _ := strconv.ParseUint(strings.TrimPrefix(p, "0x"), 16, 64) file, line, fn := tab.PCToLine(pc) name := "?" if fn != nil {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Jun 21 19:58:04 UTC 2024 - 2.4K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/loong64.s
// Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. #include "../../../../../runtime/textflag.h" // TODO: cover more instruction TEXT foo(SB),DUPOK|NOSPLIT,$0 JAL 1(PC) //CALL 1(PC) //00040054 JAL (R4) //CALL (R4) //8100004c // relocation in play so the assembled offset should be 0
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Mar 22 18:50:59 UTC 2023 - 434 bytes - Viewed (0) -
ci/official/containers/ml_build/builder.devtoolset/build_devtoolset.sh
"/${TARGET}/usr/lib/libstdc++.so.${LIBSTDCXX_VERSION}.backup" echo -e "OUTPUT_FORMAT(elf64-x86-64)\nINPUT ( libstdc++.so.6.0.13 -lstdc++_nonshared44 )" \ > "/${TARGET}/usr/lib/libstdc++.so.${LIBSTDCXX_VERSION}" cp "./x86_64-pc-linux-gnu/libstdc++-v3/src/.libs/libstdc++_nonshared44.a" \ "/${TARGET}/usr/lib" ;; devtoolset-9) # Note that the installation path for libstdc++ here is /${TARGET}/usr/lib64/
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Sep 24 20:45:58 UTC 2024 - 8K bytes - Viewed (0) -
.mailmap
Adam Murdoch <******@****.***> <Adam@Adam-PC.(none)> Adam Murdoch <******@****.***> <******@****.***> Adam Murdoch <******@****.***> <******@****.***> Adam Murdoch <******@****.***> <******@****.***> Adrian Kelly <******@****.***> <******@****.***> Benjamin Muschko <******@****.***> <******@****.***> Cedric Champeau <******@****.***> Cedric Champeau <******@****.***> <******@****.***>
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 03 06:34:28 UTC 2017 - 3.3K bytes - Viewed (0) -
cmd/namespace-lock.go
for _, path := range li.paths { li.ns.unlock(li.volume, path, readLock) } } func getSource(n int) string { var funcName string pc, filename, lineNum, ok := runtime.Caller(n) if ok { filename = pathutil.Base(filename) funcName = strings.TrimPrefix(runtime.FuncForPC(pc).Name(), "github.com/minio/minio/cmd.") } else { filename = "<unknown>" lineNum = 0 }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 29 22:40:36 UTC 2024 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/JAASAuthenticator.java
} } else if ( cb instanceof PasswordCallback ) { PasswordCallback pc = (PasswordCallback) cb; if ( this.getPassword() != null ) { pc.setPassword(this.getPassword().toCharArray()); } } } }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.1K bytes - Viewed (0)