Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 444 for stdx (0.13 sec)

  1. src/go/doc/comment/std.go

    David Chase <******@****.***> 1712870573 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 671 bytes
    - Viewed (0)
  2. src/runtime/cgo/gcc_linux_ppc64x.S

     */
    .globl crosscall_ppc64
    crosscall_ppc64:
    	// Start with standard C stack frame layout and linkage
    	mflr	%r0
    	std	%r0, 16(%r1)	// Save LR in caller's frame
    	mfcr	%r0
    	std	%r0, 8(%r1)	// Save CR in caller's frame
    	stdu	%r1, -FRAME_SIZE(%r1)
    	std	%r2, 24(%r1)
    
    	FOR_EACH_GPR std
    	FOR_EACH_FPR stfd
    	FOR_EACH_VR stvx
    
    	// Set up Go ABI constant registers
    	li	%r0, 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:03:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

    #*    *###
    #*    *### infer SPDX license id
    #*    *##if ( $MITLicenseNames.contains( $license.name ) )
    #*      *##set ( $spdx = 'MIT' )
    #*    *##elseif ( $license.name == "Eclipse Public License, Version 1.0" )
    #*      *##set ( $spdx = 'EPL-1.0' )
    #*    *##elseif ( $license.name == "Eclipse Public License, Version 2.0" )
    #*      *##set ( $spdx = 'EPL-2.0' )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. src/internal/coverage/test/counter_test.go

    	}
    	if len(allfuncs) != numSegments {
    		t.Fatalf("expected %d got %d", numSegments, len(allfuncs))
    	}
    
    	for sidx := 0; sidx < int(ns); sidx++ {
    		if off, err := inf.Seek(0, io.SeekCurrent); err != nil {
    			t.Fatalf("Seek failed: %v", err)
    		} else {
    			t.Logf("sidx=%d off=%d\n", sidx, off)
    		}
    
    		if sidx != 0 {
    			if ok, err := cdr.BeginNextSegment(); err != nil {
    				t.Fatalf("BeginNextSegment failed: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 26 12:44:34 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_aix_ppc64.S

    	std	14, -288(1)
    	std	15, -280(1)
    	std	16, -272(1)
    	std	17, -264(1)
    	std	18, -256(1)
    	std	19, -248(1)
    	std	20, -240(1)
    	std	21, -232(1)
    	std	22, -224(1)
    	std	23, -216(1)
    	std	24, -208(1)
    	std	25, -200(1)
    	std	26, -192(1)
    	std	27, -184(1)
    	std	28, -176(1)
    	std	29, -168(1)
    	std	30, -160(1)
    	std	31, -152(1)
    	stfd	14, -144(1)
    	stfd	15, -136(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/io/DefaultModelReader.java

            return (Path) value;
        }
    
        private Model read(InputStream input, Path pomFile, Map<String, ?> options) throws IOException {
            try {
                XMLInputFactory factory = new com.ctc.wstx.stax.WstxInputFactory();
                factory.setProperty(XMLInputFactory.IS_REPLACING_ENTITY_REFERENCES, false);
                XMLStreamReader parser = factory.createXMLStreamReader(input);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. maven-settings/pom.xml

                <configuration>
                  <templates>
                    <template>merger.vm</template>
                    <template>transformer.vm</template>
                    <template>reader-stax.vm</template>
                    <template>writer-stax.vm</template>
                  </templates>
                  <params combine.children="append">
                    <param>locationTracking=true</param>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    // An ELFv2 st_other==0 function. It preserves R2 (TOC), but does not use it.
    	.globl	notoc_func
    	.type	notoc_func, @function
    notoc_func:
    	// Save R2 and LR and stack a frame.
    	mflr	0
    	std	0,16(1)
    	stdu	1,-32(1)
    
    	// Save R2 in TOC save slot.
    	std	2,24(1)
    
    	// clobber R2
    	li	2,0
    
    	// Call type2_func. A call stub from notoc to toc should be inserted.
    	bl	toc_func@notoc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultRootLocator.java

    import javax.xml.stream.XMLStreamException;
    import javax.xml.stream.XMLStreamReader;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.nio.file.Files;
    import java.nio.file.Path;
    
    import com.ctc.wstx.stax.WstxInputFactory;
    import org.apache.maven.api.di.Named;
    import org.apache.maven.api.services.model.*;
    
    @Named
    public class DefaultRootLocator implements RootLocator {
    
        public boolean isRootDirectory(Path dir) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeBuilderTest.java

     * under the License.
     */
    package org.apache.maven.internal.xml;
    
    import javax.xml.stream.XMLStreamReader;
    
    import java.io.IOException;
    import java.io.StringReader;
    
    import com.ctc.wstx.stax.WstxInputFactory;
    import org.apache.maven.api.xml.XmlNode;
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    
    class XmlNodeBuilderTest {
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top