bit.3f
来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· 3F 代码 · 共 66 行
3F
66 行
.\" SCCSID: @(#)bit.3f 8.1 9/11/90.TH bit 3f VAX "" Unsupported.SH Namebit, and, or, xor, not, rshift, lshift \- bitwise functions.SH Syntax.B (intrinsic) function and (word1, word2).sp 1.B (intrinsic) function or (word1, word2).sp 1.B (intrinsic) function xor (word1, word2).sp 1.B (intrinsic) function not (word).sp 1.B (intrinsic) function rshift (word, nbits).sp 1.B (intrinsic) function lshift (word, nbits).SH Description.NXR "bit keyword".NXR "bitwise function".NXR "and bitwise function (FORTRAN)".NXR "or bitwise function (FORTRAN)".NXR "xor bitwise function (FORTRAN)".NXR "not bitwise function (FORTRAN)".NXR "rshift bitwise function (FORTRAN)".NXR "lshift bitwise function (FORTRAN)"These bitwise functions are built into the compiler and returnthe data type of their argument(s).It is recommended that their arguments be.I integervalues.Inappropriate manipulation of.I realobjects may cause unexpected results..PPThe bitwise combinatorial functions return thebitwise ``and'' (.PN and),``or'' (.PN or), or ``exclusive or'' (.PN xor) of two operands.The.PN notreturns the bitwise complement of its operand..PPThe.PN lshift ,or.PN rshiftwith a negative.IR nbits ,is a logical left shift with no end around carry.The.PN rshift ,or.PN lshiftwith a negative.IR nbits ,is an arithmetic right shift with sign extension.No test is made for a reasonable value of.I nbits..SH FilesThese functions are generated in-line by the f77 compiler.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?