Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 100 for MVN (0.02 sec)

  1. src/crypto/sha1/sha1block_arm.s

    	EOR	Rt2, Rt0, Rt0  ; \
    	EOR	Rt0, Rt1, Rt0  ; \
    	MOVW	Rt0@>(32-1), Rt0  ; \
    	MOVW.P	Rt0, 4(Rw)	  ; \
    	ADD	Rt0, Re, Re
    
    	// t1 = (b & c) | ((~b) & d)
    #define FUNC1(Ra, Rb, Rc, Rd, Re) \
    	MVN	Rb, Rt1	   ; \
    	AND	Rb, Rc, Rt0  ; \
    	AND	Rd, Rt1, Rt1 ; \
    	ORR	Rt0, Rt1, Rt1
    
    	// t1 = b ^ c ^ d
    #define FUNC2(Ra, Rb, Rc, Rd, Re) \
    	EOR	Rb, Rc, Rt1 ; \
    	EOR	Rd, Rt1, Rt1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (AND x x) => x
    (OR  x x) => x
    (XOR x x) => (MOVDconst [0])
    (BIC x x) => (MOVDconst [0])
    (EON x x) => (MOVDconst [-1])
    (ORN x x) => (MOVDconst [-1])
    (AND x (MVN y)) => (BIC x y)
    (XOR x (MVN y)) => (EON x y)
    (OR  x (MVN y)) => (ORN x y)
    (MVN (XOR x y)) => (EON x y)
    (NEG (NEG x)) => x
    
    (CSEL [cc] (MOVDconst [-1]) (MOVDconst [0]) flag) => (CSETM [cc] flag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                    goal = "";
                }
    
                // This is the case where someone has executed a single goal from the command line
                // of the form:
                //
                // mvn remote-resources:process
                //
                // From the metadata stored on the server which has been created as part of a standard
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// shifted ops
    		{name: "MVNshiftLL", argLength: 1, reg: gp11, asm: "MVN", aux: "Int64"},                   // ^(arg0<<auxInt), auxInt should be in the range 0 to 63.
    		{name: "MVNshiftRL", argLength: 1, reg: gp11, asm: "MVN", aux: "Int64"},                   // ^(arg0>>auxInt), unsigned shift, auxInt should be in the range 0 to 63.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                 * plugins that require dependency resolution although they usually run in phases of the build where project
                 * artifacts haven't been assembled yet. The prime example of this is "mvn release:prepare".
                 */
                if (aggregating && areAllDependenciesInReactor(session.getProjects(), result.getUnresolvedDependencies())) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        private static final String EXTENSIONS_FILENAME = "extensions.xml";
    
        private static final String MVN_EXTENSIONS_FILENAME = ".mvn/" + EXTENSIONS_FILENAME;
    
        private static final String MVN_MAVEN_CONFIG = ".mvn/maven.config";
    
        public static final String STYLE_COLOR_PROPERTY = "style.color";
    
        private ClassWorld classWorld;
    
        private LoggerManager plexusLoggerManager;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. pom.xml

        <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
        <maven.baseline>3.8.8</maven.baseline>
        <!-- Control the name of the distribution and information output by mvn -->
        <distributionId>apache-maven</distributionId>
        <distributionShortName>Maven</distributionShortName>
        <distributionName>Apache Maven</distributionName>
        <maven.site.path>ref/4-LATEST</maven.site.path>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. apache-maven/src/assembly/maven/conf/settings.xml

      <offline>false</offline>
      -->
    
      <!-- pluginGroups
       | This is a list of additional group identifiers that will be searched when resolving plugins by their prefix, i.e.
       | when invoking a command line like "mvn prefix:goal". Maven will automatically add the group identifiers
       | "org.apache.maven.plugins" and "org.codehaus.mojo" if these are not already contained in the list.
       |-->
      <pluginGroups>
        <!-- pluginGroup
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:06:01 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (BIC x (SRL y z)) => (BICshiftRLreg x y z)
    (BIC x (SRA y z)) => (BICshiftRAreg x y z)
    (MVN (SLLconst [c] x)) => (MVNshiftLL x [c])
    (MVN (SRLconst [c] x)) => (MVNshiftRL x [c])
    (MVN (SRAconst [c] x)) => (MVNshiftRA x [c])
    (MVN (SLL x y)) => (MVNshiftLLreg x y)
    (MVN (SRL x y)) => (MVNshiftRLreg x y)
    (MVN (SRA x y)) => (MVNshiftRAreg x y)
    
    (CMP x (SLLconst [c] y)) => (CMPshiftLL x y [c])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  10. src/crypto/md5/md5block_arm.s

    	ROUND3(Rc, Rd, Ra, Rb, 15, 16, Rc2)
    	ROUND3(Rb, Rc, Rd, Ra,  2, 23, Rc3)
    
    // a += (c^(b|^d)) + X[index] + const
    // a = a<<shift | a>>(32-shift) + b
    #define ROUND4(Ra, Rb, Rc, Rd, index, shift, Rconst) \
    	MVN	Rd, Rt0			; \
    	ORR	Rb, Rt0			; \
    	EOR	Rc, Rt0			; \
    	MOVW	(index<<2)(Rdata), Rt1	; \
    	ADD	Rt1, Rt0			; \
    	ADD	Rconst, Rt0			; \
    	ADD	Rt0, Ra			; \
    	ADD	Ra@>(32-shift), Rb, Ra	;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top