Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for Alignof (0.67 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	"aN": {"&=", 2, precAssign},
    	"aS": {"=", 2, precAssign},
    	"aa": {"&&", 2, precLogicalAnd},
    	"ad": {"&", 1, precUnary},
    	"an": {"&", 2, precAnd},
    	"at": {"alignof ", 1, precUnary},
    	"aw": {"co_await ", 1, precPrimary},
    	"az": {"alignof ", 1, precUnary},
    	"cc": {"const_cast", 2, precPostfix},
    	"cl": {"()", 2, precPostfix},
    	// cp is not in the ABI but is used by clang "when the call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    				wantParens = true
    			case op.Name == `operator"" `:
    				wantParens = false
    			case op.Name == "&":
    				wantParens = false
    			case isDelete:
    				wantParens = false
    			case op.Name == "alignof ":
    				wantParens = true
    			case op.Name == "sizeof ":
    				wantParens = true
    			case op.Name == "typeid ":
    				wantParens = true
    			default:
    				wantParens = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^BUS_(USB|HIL|BLUETOOTH|VIRTUAL)$/ ||
    		$2 ~ /^MTD/ ||
    		$2 ~ /^OTP/ ||
    		$2 ~ /^MEM/ ||
    		$2 ~ /^WG/ ||
    		$2 ~ /^FIB_RULE_/ ||
    		$2 ~ /^BLK[A-Z]*(GET$|SET$|BUF$|PART$|SIZE|IOMIN$|IOOPT$|ALIGNOFF$|DISCARD|ROTATIONAL$|ZEROOUT$|GETDISKSEQ$)/ {printf("\t%s = C.%s\n", $2, $2)}
    		$2 ~ /^__WCOREFLAG$/ {next}
    		$2 ~ /^__W[A-Z0-9]+$/ {printf("\t%s = C.%s\n", substr($2,3), $2)}
    
    		{next}
    	' | sort
    
    	echo ')'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top