Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 408 for Asm (0.05 sec)

  1. src/crypto/sha1/fallback_test.go

    // license that can be found in the LICENSE file.
    
    //go:build s390x && !purego
    
    package sha1
    
    import (
    	"fmt"
    	"io"
    	"testing"
    )
    
    // Tests the fallback code path in case the optimized asm
    // implementation cannot be used.
    // See also TestBlockGeneric.
    func TestGenericPath(t *testing.T) {
    	if !useAsm {
    		t.Skipf("assembly implementation unavailable")
    	}
    	useAsm = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 853 bytes
    - Viewed (0)
  2. src/crypto/sha512/fallback_test.go

    // license that can be found in the LICENSE file.
    
    //go:build s390x && !purego
    
    package sha512
    
    import (
    	"fmt"
    	"io"
    	"testing"
    )
    
    // Tests the fallback code path in case the optimized asm
    // implementation cannot be used.
    // See also TestBlockGeneric.
    func TestGenericPath(t *testing.T) {
    	if !useAsm {
    		t.Skipf("assembly implementation unavailable")
    	}
    	useAsm = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 964 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/JvmBytecodeInterceptorSet.java

    import org.gradle.internal.classpath.ClassData;
    import org.gradle.internal.instrumentation.api.types.BytecodeInterceptorFilter;
    import org.gradle.internal.instrumentation.api.jvmbytecode.JvmBytecodeCallInterceptor;
    import org.objectweb.asm.MethodVisitor;
    
    import java.util.List;
    
    public interface JvmBytecodeInterceptorSet {
    
        List<JvmBytecodeCallInterceptor> getInterceptors(MethodVisitor methodVisitor, ClassData classData);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/mips64/l.go

    // Inferno utils/5l/asm.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/5l/asm.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 07:25:06 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  5. src/runtime/defs1_linux.go

    //go:build ignore
    
    /*
    Input to cgo -cdefs
    
    GOARCH=amd64 cgo -cdefs defs.go defs1.go >amd64/defs.h
    */
    
    package runtime
    
    /*
    #include <ucontext.h>
    #include <fcntl.h>
    #include <asm/signal.h>
    */
    import "C"
    
    const (
    	O_RDONLY    = C.O_RDONLY
    	O_NONBLOCK  = C.O_NONBLOCK
    	O_CLOEXEC   = C.O_CLOEXEC
    	SA_RESTORER = C.SA_RESTORER
    )
    
    type Usigset C.__sigset_t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 845 bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_windows_amd64.c

    static void
    threadentry(void *v)
    {
    	ThreadStart ts;
    
    	ts = *(ThreadStart*)v;
    	free(v);
    
    	// minit queries stack bounds from the OS.
    
    	/*
    	 * Set specific keys in thread local storage.
    	 */
    	asm volatile (
    	  "movq %0, %%gs:0(%1)\n"	// MOVL tls0, 0(tls_g)(GS)
    	  :: "r"(ts.tls), "r"(*tls_g)
    	);
    
    	crosscall1(ts.fn, setg_gcc, (void*)ts.g);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 12 03:56:28 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/model/ImplementationInfoImpl.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.model;
    
    import org.objectweb.asm.Type;
    
    public class ImplementationInfoImpl implements ImplementationInfo {
        private final Type owner;
        private final String name;
        private final String descriptor;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/GradleJvmVersion.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.support.bytecode
    
    import org.gradle.api.JavaVersion
    import org.objectweb.asm.Opcodes
    
    
    internal
    object GradleJvmVersion {
    
        /**
         * The minimal Java version required to run Gradle.
         */
        val minimalJavaVersion: JavaVersion =
            JavaVersion.VERSION_1_8
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/instrumentation-declarations/build.gradle.kts

        compileOnly(libs.groovy)
        compileOnly(project(":code-quality"))
    
        // Instrumentation dependencies
        compileOnly(project(":internal-instrumentation-api"))
        compileOnly(libs.asm)
        compileOnly(libs.asmUtil)
        compileOnly(libs.asmTree)
        annotationProcessor(project(":internal-instrumentation-processor"))
        annotationProcessor(platform(project(":distributions-dependencies")))
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirJvmTypeMapper.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.api.types.KaType
    import org.jetbrains.kotlin.load.kotlin.TypeMappingMode
    import org.jetbrains.org.objectweb.asm.Type
    
    internal class KaFirJvmTypeMapper(
        override val analysisSession: KaFirSession,
        override val token: KaLifetimeToken,
    ) : KaJvmTypeMapper(), KaFirSessionComponent {
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top