Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for IncDec (0.18 sec)

  1. test/fixedbugs/gcc61264.go

    // compile
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // PR61264: IncDec statements involving composite literals caused in ICE in gccgo.
    
    package main
    
    func main() {
            map[int]int{}[0]++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 313 bytes
    - Viewed (0)
  2. test/fixedbugs/gcc61255.go

    // compile
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // PR61255: gccgo failed to compile IncDec statements on variadic functions.
    
    package main
    
    func main() {
    	append([]byte{}, 0)[0]++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 306 bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

     *   // }
     *
     *   i++
     *   // partiallyAppliedSymbol: {
     *   //   symbol: `i`
     *   //   dispatchReceiver: null
     *   //   extensionReceiver: null
     *   // }
     *   // accessType: IncDec {
     *   //   kind: INC
     *   //   precedence: POSTFIX
     *   //   operationSymbol: Int.inc()
     *   // }
     * }
     * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/fmt.go

    		n := n.(*AssignStmt)
    		if n.Def && !complexinit {
    			fmt.Fprintf(s, "%v := %v", n.X, n.Y)
    		} else {
    			fmt.Fprintf(s, "%v = %v", n.X, n.Y)
    		}
    
    	case OASOP:
    		n := n.(*AssignOpStmt)
    		if n.IncDec {
    			if n.AsOp == OADD {
    				fmt.Fprintf(s, "%v++", n.X)
    			} else {
    				fmt.Fprintf(s, "%v--", n.X)
    			}
    			break
    		}
    
    		fmt.Fprintf(s, "%v %v= %v", n.X, n.AsOp, n.Y)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/typecheck.go

    	case ir.ODEREF:
    		n := n.(*ir.StarExpr)
    		return tcStar(n, top)
    
    	// x op= y
    	case ir.OASOP:
    		n := n.(*ir.AssignOpStmt)
    		n.X, n.Y = Expr(n.X), Expr(n.Y)
    		checkassign(n.X)
    		if n.IncDec && !okforarith[n.X.Type().Kind()] {
    			base.Errorf("invalid operation: %v (non-numeric type %v)", n, n.X.Type())
    			return n
    		}
    		switch n.AsOp {
    		case ir.OLSH, ir.ORSH:
    			n.X, n.Y, _ = tcShift(n, n.X, n.Y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/Encdec.java

    /* encdec - encode and decode integers, times, and
     * internationalized strings to and from popular binary formats
     * http://www.ioplex.com/~miallen/encdec/
     * Copyright (c) 2003 Michael B. Allen <******@****.***>
     *
     * The GNU Library General Public License
     * 
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Library General Public
     * License as published by the Free Software Foundation; either
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/util/Encdec.java

    /* encdec - encode and decode integers, times, and
     * internationalized strings to and from popular binary formats
     * http://www.ioplex.com/~miallen/encdec/
     * Copyright (c) 2003 Michael B. Allen <******@****.***>
     *
     * The GNU Library General Public License
     * 
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Library General Public
     * License as published by the Free Software Foundation; either
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 10.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    		p.As == AANDB || p.As == AANDL || p.As == AANDQ || p.As == AANDW
    
    	incDec := p.As == AINCB || p.As == AINCL || p.As == AINCQ || p.As == AINCW ||
    		p.As == ADECB || p.As == ADECL || p.As == ADECQ || p.As == ADECW
    
    	if !cmpAddSub && !testAnd && !incDec {
    		return false, 0
    	}
    
    	if !incDec {
    		var argOne obj.AddrType
    		var argTwo obj.AddrType
    		if cmp {
    			argOne = p.From.Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

        public final void writeShort( int v ) throws SmbException {
            Encdec.enc_uint16be( (short)v, tmp, 0 );
            write( tmp, 0, 2 );
        }
        public final void writeChar( int v ) throws SmbException {
            Encdec.enc_uint16be( (short)v, tmp, 0 );
            write( tmp, 0, 2 );
        }
        public final void writeInt( int v ) throws SmbException {
            Encdec.enc_uint32be( v, tmp, 0 );
            write( tmp, 0, 4 );
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java

            align(2);
            Encdec.enc_uint16le((short) s, this.buf, this.index);
            advance(2);
        }
    
    
        public int dec_ndr_short () {
            align(2);
            int val = Encdec.dec_uint16le(this.buf, this.index);
            advance(2);
            return val;
        }
    
    
        public void enc_ndr_long ( int l ) {
            align(4);
            Encdec.enc_uint32le(l, this.buf, this.index);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.6K bytes
    - Viewed (0)
Back to top