Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for 384 (0.02 sec)

  1. src/cmd/internal/obj/arm64/doc.go

    (1) Argument order is the same as in the GNU ARM64 syntax: cbz, cbnz and some store instructions,
    such as str, stur, strb, sturb, strh, sturh stlr, stlrb. stlrh, st1.
    
    Examples:
    
    	MOVD R29, 384(R19)    <=>    str x29, [x19,#384]
    	MOVB.P R30, 30(R4)    <=>    strb w30, [x4],#30
    	STLRH R21, (R19)      <=>    stlrh w21, [x19]
    
    (2) MADD, MADDW, MSUB, MSUBW, SMADDL, SMSUBL, UMADDL, UMSUBL <Rm>, <Ra>, <Rn>, <Rd>
    
    Examples:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. security/pkg/pki/util/crypto.go

    	}
    	pkey := privKey.(*rsa.PrivateKey)
    	return pkey.N.BitLen(), nil
    }
    
    // GetEllipticCurve returns the type of curve associated with the private key;
    // if ECDSA is used, then only 384 and 256 (default) are returned; if non-ECDSA
    // is used then an error is returned
    func GetEllipticCurve(privKey *crypto.PrivateKey) (elliptic.Curve, error) {
    	switch key := (*privKey).(type) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidCommunityPluginsSmokeTest.groovy

                (FLADLE_PLUGIN_ID): Versions.of('0.17.4'),
                // https://plugins.gradle.org/plugin/com.github.triplet.play
                (TRIPLET_PLAY_PLUGIN_ID): Versions.of('3.8.4'),
                // https://mvnrepository.com/artifact/androidx.navigation.safeargs/androidx.navigation.safeargs.gradle.plugin
                (SAFEARGS_PLUGIN_ID): Versions.of('2.6.0'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/crypto/internal/boring/ecdsa.go

    func curveNID(curve string) (C.int, error) {
    	switch curve {
    	case "P-224":
    		return C.GO_NID_secp224r1, nil
    	case "P-256":
    		return C.GO_NID_X9_62_prime256v1, nil
    	case "P-384":
    		return C.GO_NID_secp384r1, nil
    	case "P-521":
    		return C.GO_NID_secp521r1, nil
    	}
    	return 0, errUnknownCurve
    }
    
    func NewPublicKeyECDSA(curve string, X, Y BigInt) (*PublicKeyECDSA, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildsIntegrationTest.groovy

            if (!OperatingSystem.current().isWindows()) {
                confCacheFiles.forEach {
                    assert confCacheDir.file(it).mode == 384
                }
            }
    
            when: 'changing source file from included build'
            file('lib/src/main/java/Lib.java').text = """
                public class Lib { public static void main() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheRepository.kt

                    } finally {
                        stateFiles.asSequence()
                            .filter(File::isFile)
                            .forEach {
                                chmod(it, 384) // octal 0600
                            }
                    }
                }
        }
    
        private
        fun includedBuildFileFor(parentStateFile: File, build: BuildDefinition) =
            parentStateFile.run {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/crypto/internal/boring/ecdh.go

    	}
    	return out, nil
    }
    
    func curveSize(curve string) int {
    	switch curve {
    	default:
    		panic("crypto/internal/boring: unknown curve " + curve)
    	case "P-256":
    		return 256 / 8
    	case "P-384":
    		return 384 / 8
    	case "P-521":
    		return (521 + 7) / 8
    	}
    }
    
    func GenerateKeyECDH(curve string) (*PrivateKeyECDH, []byte, error) {
    	nid, err := curveNID(curve)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/runtime/memclr_ppc64x.s

    	CMP  R4, $512   // check if at least 512
    	BLT  remain
    	SRD  $9, R4, R8 // loop count for 512 chunks
    	MOVD R8, CTR    // set up counter
    	MOVD $128, R9   // index regs for 128 bytes
    	MOVD $256, R10
    	MOVD $384, R11
    	PCALIGN $16
    zero512:
    	DCBZ (R3+R0)        // clear first chunk
    	DCBZ (R3+R9)        // clear second chunk
    	DCBZ (R3+R10)       // clear third chunk
    	DCBZ (R3+R11)       // clear fourth chunk
    	ADD  $512, R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 17:08:59 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go

    	SYS___MAC_EXECVE                   = 380
    	SYS___MAC_SYSCALL                  = 381
    	SYS___MAC_GET_FILE                 = 382
    	SYS___MAC_SET_FILE                 = 383
    	SYS___MAC_GET_LINK                 = 384
    	SYS___MAC_SET_LINK                 = 385
    	SYS___MAC_GET_PROC                 = 386
    	SYS___MAC_SET_PROC                 = 387
    	SYS___MAC_GET_FD                   = 388
    	SYS___MAC_SET_FD                   = 389
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go

    	SYS_COPY_FILE_RANGE         = 379
    	SYS_PREADV2                 = 380
    	SYS_PWRITEV2                = 381
    	SYS_KEXEC_FILE_LOAD         = 382
    	SYS_STATX                   = 383
    	SYS_PKEY_ALLOC              = 384
    	SYS_PKEY_FREE               = 385
    	SYS_PKEY_MPROTECT           = 386
    	SYS_RSEQ                    = 387
    	SYS_IO_PGETEVENTS           = 388
    	SYS_SEMTIMEDOP              = 392
    	SYS_SEMGET                  = 393
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top