代码搜索:zero
找到约 10,000 项符合「zero」的源代码
代码结果 10,000
www.eeworm.com/read/402654/2318736
cpp set_to_zero_test.cpp
// Software License for MTL
//
// Copyright (c) 2007 The Trustees of Indiana University. All rights reserved.
// Authors: Peter Gottschling and Andrew Lumsdaine
//
// This file is part of the Matrix
www.eeworm.com/read/371704/2779107
m s_zero_phase.m
function seismic=s_zero_phase(seismic)
% Create the zero-phase equivalent of the input data set
% The output data set is centered at time 0; if the input data set has an
% even number of samples th
www.eeworm.com/read/366702/2865633
c wno-div-by-zero.c
// { dg-options "-Wno-div-by-zero" }
int breakme()
{
int x = 0;
x /= 0;
return x;
}
www.eeworm.com/read/366702/2872863
m zero-link-3.m
/* Check that the '-fzero-link' flag doesn't prevent messaging from working. */
/* Contributed by Ziemowit Laski . */
/* { dg-options "-fnext-runtime -fzero-link -lobjc" } */
/* { d
www.eeworm.com/read/366702/2872867
m zero-link-2.m
/* Check if the '-fno-zero-link' flag correctly _omits_ an objc_getClass() call. */
/* Contributed by Ziemowit Laski . */
/* { dg-options "-fnext-runtime -fno-zero-link" } */
/* { d
www.eeworm.com/read/366702/2872938
m zero-link-1.m
/* Check if the '-fzero-link' flag correctly emits an objc_getClass() call. */
/* Contributed by Ziemowit Laski . */
/* { dg-options "-fnext-runtime -fzero-link" } */
/* { dg-do com
www.eeworm.com/read/366702/2878329
c zero-struct-1.c
struct g{};
char y[3];
char *f = &y[0];
char *ff = &y[0];
void h(void)
{
struct g t;
*((struct g*)(f++)) = *((struct g*)(ff++));
*((struct g*)(f++)) = (struct g){};
t = *((struct g*)(ff++));
}
www.eeworm.com/read/366702/2878977
c zero-struct-2.c
void abort (void);
int ii;
typedef struct {} raw_spinlock_t;
typedef struct {
raw_spinlock_t raw_lock;
} spinlock_t;
raw_spinlock_t one_raw_spinlock (void)
{
raw_spinlock_t raw_lock;
ii++;
ret
www.eeworm.com/read/366702/2879431
c zero-strct-2.c
struct { } foo = { };
void * bar(void) { return &foo; }
www.eeworm.com/read/366702/2879651
c zero-strct-4.c
typedef struct {} raw_spinlock_t;
typedef struct {
raw_spinlock_t raw_lock;
} spinlock_t;
struct sk_buff_head {
int i;
spinlock_t lock;
};
struct sk_buff_head audit_skb_queue;
void audit_init(vo