代码搜索:XOR
找到约 5,576 项符合「XOR」的源代码
代码结果 5,576
www.eeworm.com/read/109475/6174123
xor
vti_encoding:SR|utf8-nl
vti_timelastmodified:TR|13 Nov 2001 07:16:10 -0000
vti_extenderversion:SR|4.0.2.3406
www.eeworm.com/read/493005/6403597
xor
NAME
xor - bitwise exclusive or of a set of integers
SYNOPSIS
xor(x1, x2, ...)
TYPES
x1, x2, ... integer
return integer
DESCRIPTION
Compute the bitwise exclusive or of a set of
www.eeworm.com/read/467516/1500101
as xor.as
package flare.query
{
/**
* Expression operator that computes the exclusive-or ("xor") of
* sub-expression clauses.
*/
public class Xor extends CompositeExpression
{
/**
* Creat
www.eeworm.com/read/467516/1500115
as xor.as
package flare.query.methods
{
import flare.query.Xor;
/**
* Creates a new Xor (exclusive or) query operator.
* @param rest a list of expressions to include in the exclusive
www.eeworm.com/read/291752/8398879
h xor.h
//
// File = xor.h
//
#ifndef _XOR_H_
#define _XOR_H_
int xor(int value);
#endif
www.eeworm.com/read/291752/8399522
cpp xor.cpp
// xor.cpp
//
#include "xor.h"
#include "math.h"
int xor(int value)
{
int x=value;
int result=0;
while(x!=0)
{
result ^= (x&0x1);
x >>= 1;
}
return( result);
www.eeworm.com/read/191902/8417112
mat xor.mat
www.eeworm.com/read/291026/8444520
m xor.m
function[y]=xor(a,b);
%%%本函数实现模二加运算
if(a==b) y=0;
else y=1;
end;
www.eeworm.com/read/432782/8573649
vl xor.vl
module not1(x,a);
input a;
output x;
supply1 pwr;
supply0 grd;
pmos p(x,pwr,a);
nmos n(x,grd,a);
endmodule
module xor1 (a, b, w);
input a, b;
outp