代码搜索:zero

找到约 10,000 项符合「zero」的源代码

代码结果 10,000
www.eeworm.com/read/366702/2879714

c zero-strct-3.c

typedef struct {} spinlock_t; struct sk_buff_head { int i; spinlock_t lock; }; struct sk_buff_head audit_skb_queue; void audit_init(void) { struct sk_buff_head *list = &audit_skb_queue; spinlo
www.eeworm.com/read/366702/2880157

c zero-strct-5.c

/* Check that the inliner does not crash for this testcase. gimple_expr can change the expr to NULL meaning that we should not add any statement. */ struct f {}; struct g1 {struct f l;}; static
www.eeworm.com/read/366702/2880264

c zero-strct-1.c

typedef struct { } empty_t; f () { empty_t i; bar (i); }
www.eeworm.com/read/366702/2884437

c zero-length-1.c

/* Test the -Wno-format-zero-length option, which suppresses warnings about zero-length formats. */ /* Origin: Jason Thorpe */ /* { dg-do compile } */ /* { dg-options "
www.eeworm.com/read/358104/3006277

h fixed_fd_zero.h

/* $Id: fixed_fd_zero.h,v 1.4 2000/04/06 07:26:53 jm Exp $ * Fix __FD_ZERO macro that causes problems with gcc-bc * * Dynamic hierarchial IP tunnel * Copyright (C) 1998-2000, Dynamics group * *
www.eeworm.com/read/263472/4302310

h data_zero_large.h

/* ============================================================================ * Copyright (c) Texas Instruments Inc 2002, 2003, 2004, 2005, 2006 * * Use of this software is controlled by
www.eeworm.com/read/162614/5531288

c zero-length-1.c

/* Test the -Wno-format-zero-length option, which suppresses warnings about zero-length formats. */ /* Origin: Jason Thorpe */ /* { dg-do compile } */ /* { dg-options "
www.eeworm.com/read/162614/5540098

cc zero_sized_arrays.cc

// 2004-10-20 Benjamin Kosnik // // Copyright (C) 2004, 2005 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; y
www.eeworm.com/read/472368/6876112

m zero_crossing_rate.m

function Zn=zero_crossing_rate(xn) %求各帧的短时过零率 N=size(xn,1); n=size(xn,2); for i=1:n Zn(i)=floor(1/2*sum(abs(sign(xn(2:N,i))-sign(xn(1:N-1,i))))); end