Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for A2e (0.25 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    //go:build zos
    
    package unix
    
    import (
    	"bytes"
    	"fmt"
    	"unsafe"
    )
    
    //go:noescape
    func bpxcall(plist []unsafe.Pointer, bpx_offset int64)
    
    //go:noescape
    func A2e([]byte)
    
    //go:noescape
    func E2a([]byte)
    
    const (
    	BPX4STA = 192  // stat
    	BPX4FST = 104  // fstat
    	BPX4LST = 132  // lstat
    	BPX4OPN = 156  // open
    	BPX4CLO = 72   // close
    	BPX4CHR = 500  // chattr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.s

    	BYTE  $0xE9                 // clobbers 0,1,14,15
    	MOVD  R8, R15               // restore 15
    	JMP   R7                    // return via saved return address
    
    //   func A2e(arr [] byte)
    //   code page conversion from  819 to 1047
    TEXT ยทA2e(SB), NOSPLIT|NOFRAME, $0
    	MOVD arg_base+0(FP), R2                        // pointer to arry of characters
    	MOVD arg_len+8(FP), R3                         // count
    	XOR  R0, R0
    	XOR  R1, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	}
    	return 0, nil
    }
    func ZosStringToEbcdicBytes(str string, nullterm bool) (ebcdicBytes []byte) {
    	if nullterm {
    		ebcdicBytes = []byte(str + "\x00")
    	} else {
    		ebcdicBytes = []byte(str)
    	}
    	A2e(ebcdicBytes)
    	return
    }
    func ZosEbcdicBytesToString(b []byte, trimRight bool) (str string) {
    	res := make([]byte, len(b))
    	copy(res, b)
    	E2a(res)
    	if trimRight {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top