代码搜索:Operators
找到约 8,993 项符合「Operators」的源代码
代码结果 8,993
www.eeworm.com/read/379647/9190689
txt 布斯乘法器.txt
-- Booth Multiplier
-- This file contains all the entity-architectures for a complete
-- k-bit x k-bit Booth multiplier.
-- the design makes use of the new shift operators available in the VHDL-93
www.eeworm.com/read/373369/9460387
java urshift.java
//: operators/URShift.java
// Test of unsigned right shift.
import static net.mindview.util.Print.*;
public class URShift {
public static void main(String[] args) {
int i = -1;
print
www.eeworm.com/read/373369/9460397
java ternaryifelse.java
//: operators/TernaryIfElse.java
import static net.mindview.util.Print.*;
public class TernaryIfElse {
static int ternary(int i) {
return i < 10 ? i * 100 : i * 10;
}
static int stan
www.eeworm.com/read/169058/9883086
java urshift.java
//: operators/URShift.java
// Test of unsigned right shift.
import static net.mindview.util.Print.*;
public class URShift {
public static void main(String[] args) {
int i = -1;
print
www.eeworm.com/read/169058/9883093
java ternaryifelse.java
//: operators/TernaryIfElse.java
import static net.mindview.util.Print.*;
public class TernaryIfElse {
static int ternary(int i) {
return i < 10 ? i * 100 : i * 10;
}
static int stan
www.eeworm.com/read/166954/9988233
txt 布斯乘法器.txt
-- Booth Multiplier
-- This file contains all the entity-architectures for a complete
-- k-bit x k-bit Booth multiplier.
-- the design makes use of the new shift operators available in the VHDL-93
www.eeworm.com/read/164962/10080411
txt multiplier_booth.txt
-- Booth Multiplier
-- This file contains all the entity-architectures for a complete
-- k-bit x k-bit Booth multiplier.
-- the design makes use of the new shift operators available in the VHDL-93
www.eeworm.com/read/353811/10416512
txt 布斯乘法器.txt
-- Booth Multiplier
-- This file contains all the entity-architectures for a complete
-- k-bit x k-bit Booth multiplier.
-- the design makes use of the new shift operators available in the VHDL-93
www.eeworm.com/read/353439/10446945
java rightshifttest2.java
// operators/RightShiftTest2.java
// TIJ4 Chapter Operator, Exercise 12, page 116
/* Start with a number that is all binary ones. Left shift it, then use the
* unsigned right-shift operator to rig
www.eeworm.com/read/279032/10479330
htm ec3.htm
Effective C++, 2E | Chapter 3: Constructors, Destructors, and Assignment Operators Back to Item 10: Write operator delete if you write operator new.
Continue to Item 11: Declare a copy constructor an