代码搜索:except
找到约 10,000 项符合「except」的源代码
代码结果 10,000
www.eeworm.com/read/298973/3856715
s gen_except.s
/* gen_except.s - Motorola 68040 FP exception detection (EXC) */
/* Copyright 1991-1993 Wind River Systems, Inc. */
.data
.globl _copyright_wind_river
.long _copyright_wind_river
/*
modification
www.eeworm.com/read/296544/3902238
s gen_except.s
/* gen_except.s - Motorola 68040 FP exception detection (EXC) */
/* Copyright 1991-1993 Wind River Systems, Inc. */
.data
.globl _copyright_wind_river
.long _copyright_wind_river
/*
modification
www.eeworm.com/read/294038/3921805
s gen_except.s
|
| gen_except.sa 3.7 1/16/92
|
| gen_except --- FPSP routine to detect reportable exceptions
|
| This routine compares the exception enable byte of the
| user_fpcr on the stack with the exception st
www.eeworm.com/read/292705/3943626
s gen_except.s
|
| gen_except.sa 3.7 1/16/92
|
| gen_except --- FPSP routine to detect reportable exceptions
|
| This routine compares the exception enable byte of the
| user_fpcr on the stack with the exception st
www.eeworm.com/read/292387/3953760
h except_macros.h
#ifndef EXCEPT_MACROS_H
#define EXCEPT_MACROS_H
/* The variable is daddr */
#define cmp_ip(ip) \
((daddr == (ip)))
#define cmp_ip_and_mask(ip, mask) \
((daddr & (mask)) == (ip & (mask)))
/* lazy
www.eeworm.com/read/287839/4015766
s gen_except.s
/* gen_except.s - Motorola 68040 FP exception detection (EXC) */
/* Copyright 1991-1993 Wind River Systems, Inc. */
.data
.globl _copyright_wind_river
.long _copyright_wind_river
/*
modification
www.eeworm.com/read/286192/4041994
cpp except1.cpp
#include
#include
#include
using namespace std;
void do_something()
{
throw string("help");
}
bool test_except( )
{
bool ok = false;
try {
thro
www.eeworm.com/read/286192/4042014
h uc_except.h
// uc_except.h
// Maps Win32 structured exceptions (SE) or Linux signals
// onto C++ exceptions
#ifndef _uc_except_h
#define _uc_except_h
class Exception {
private:
char *m_what;
public:
www.eeworm.com/read/286192/4042114
h hard_except.h
// hard_except.h
// Maps Win32 structured exceptions (SE) onto C++ exceptions
#ifndef _hard_except_h
#define _hard_except_h
class Exception {
private:
char *m_what;
int m_type;
pub
www.eeworm.com/read/286192/4042170
cpp hard_except.cpp
/* hard_except.cpp
* Mapping between hardware signals/exceptions and C++ exceptions
* UnderC C++ interpreter
* Steve Donovan, 2001
* This is GPL'd software, and the usual disclaimers apply.