代码搜索:kernel
找到约 10,000 项符合「kernel」的源代码
代码结果 10,000
www.eeworm.com/read/452710/7435978
h kernel.h
/* kernel.h - disable, enable, halt, restore, isodd, min, max */
#include
/* Symbolic constants used throughout Xinu */
typedef char Bool; /* Boolean type */
#define FALSE 0
www.eeworm.com/read/452196/7446178
h kernel.h
#include
#include
#define ENCRYPT 1
#define DECRYPT 0
// 16 sub keys
static bool SubKey[16][48];
// Permuted Choice 1 (PC-1)
const static char PC1_Table[56] =
{
57,
www.eeworm.com/read/450150/7489815
h kernel.h
#define INT_MAX ((int)(~0U>>1))
#define INT_MIN (-INT_MAX - 1)
#define UINT_MAX (~0U)
#define LONG_MAX ((long)(~0UL>>1))
#define LONG_MIN (-LONG_MAX - 1)
#define ULONG_MAX (~0UL)
www.eeworm.com/read/449996/7491919
c kernel.c
/* Non pre-empting synchronization kernel, machine-independent portion
*/
#if defined(PROCLOG) || defined(PROCTRACE)
#include
#endif
#include
#include
#include "gl
www.eeworm.com/read/448648/7528292
texi kernel.texi
@node Kernel Interface, SNMP Support, IPv6 Support, Top
@comment node-name, next, previous, up
@chapter Kernel Interface
There are several different methods for reading kernel routing table
infor
www.eeworm.com/read/446156/7584946
h kernel.h
/*
* 'kernel.h' contains some often-used function prototypes etc
*/
void verify_area(void * addr,int count);
volatile void panic(const char * str);
int printf(const char * fmt, ...);
int printk(cons
www.eeworm.com/read/445573/7593049
m kernel.m
function [K] = kernel(ker,x,y)
% Calculate kernel function.
% x: 输入样本,n1×d的矩阵,n1为样本个数,d为样本维数
% y: 输入样本,n2×d的矩阵,n2为样本个数,d为样本维数
% ker 核参数(结构体变量)
% the following fields:
% type - linear :
www.eeworm.com/read/445043/7600086
h kernel.h
/*
* 'kernel.h' contains some often-used function prototypes etc
*/
/*
* 'kernel.h'定义了一些常用函数的原型等。
*/
// 验证给定地址开始的内存块是否超限。若超限则追加内存。( kernel/fork.c, 24 )。
void verify_area (void *addr, int count);
// 显示
www.eeworm.com/read/442701/7646207
c kernel.c
//ANNA kernel by Glushko A.N
#include "k_defines.h"
//#include "keydefs.h"
#include "keys.h"
#include "string.h"
//#include
void read(char [],unsigned int);
//It speaks for itsel
www.eeworm.com/read/442499/7650364