代码搜索:Operator
找到约 10,000 项符合「Operator」的源代码
代码结果 10,000
www.eeworm.com/read/131315/5945314
c operator.c
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Cimarron D. Taylor of the U
www.eeworm.com/read/127043/6009679
java operator.java
/**
* Redistribution and use of this software and associated documentation
* ("Software"), with or without modification, are permitted provided
* that the following conditions are met:
*
* 1
www.eeworm.com/read/125896/6020685
java operator.java
/*********************************************************************
*
* Copyright (C) 2002 Andrew Khan
*
* This library is free software; you can redistribute it and/or
* modify it under
www.eeworm.com/read/119117/6092827
java operator.java
package HECore.stddata;
import java.lang.*;
import HPCore.Exception.*;
public class Operator {
public static short Add(short i,short j)
{
return (short)(i+j);
}
public stat
www.eeworm.com/read/117096/6111908
h operator.h
// -*- c++ -*-
/* Do not edit! -- generated file */
#ifndef _SIGC_LAMBDA_OPERATOR_HPP_
#define _SIGC_LAMBDA_OPERATOR_HPP_
#include
namespace sigc {
/** Deduces the ba
www.eeworm.com/read/116008/6114474
nc operator.nc
/* tab:4
*
*
* "Copyright (c) 2000-2002 The Regents of the University of California.
* All rights reserved.
*
* Permission to use, copy, modify, and distribute this software and its
www.eeworm.com/read/100127/6273958
test_operator
test_operator
testing: abs
testing: add
testing: and_
testing: concat
testing: countOf
testing: delitem
testing: delslice
testing: div
testing: getitem
testing: getslice
testing: indexOf
testing: inv
www.eeworm.com/read/154366/6314025
db operator.db
www.eeworm.com/read/154366/6314027
px operator.px
www.eeworm.com/read/488450/6487261
java operator.java
public class Operator {
// 异或
public byte[] XOR(byte[] w, byte[] k) {
byte[] Z = new byte[4];
for (int i = 0; i < 4; i++) {
Z[i] = (byte) (w[i] ^ k[i]);
}
return Z;