代码搜索:Sign

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

代码结果 10,000
www.eeworm.com/read/311745/3678038

v sign_fir_lms.v

`timescale 1ns / 1ps ////////////////////////////////////////////////////////////////////////////////// // Company: // Engineer: // // Create Date: 10:31:41 08/25/2007 // Design Name: /
www.eeworm.com/read/304962/3782771

h sign_between_roots.h

// Copyright (c) 2005 Stanford University (USA). // All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser
www.eeworm.com/read/304962/3782789

h filtered_sign_at_rational.h

// Copyright (c) 2005 Stanford University (USA). // All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser
www.eeworm.com/read/304962/3782811

h sign_above_rational.h

// Copyright (c) 2005 Stanford University (USA). // All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser
www.eeworm.com/read/304962/3782813

h sign_below_rational.h

// Copyright (c) 2005 Stanford University (USA). // All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser
www.eeworm.com/read/304962/3782817

h sign_sturm_sequence.h

// Copyright (c) 2005 Stanford University (USA). // All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser
www.eeworm.com/read/304962/3782834

h sign_variations_counter.h

// Copyright (c) 2005 Stanford University (USA). // All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser
www.eeworm.com/read/442451/1761774

v sign_fir_lms.v

`timescale 1ns / 1ps ////////////////////////////////////////////////////////////////////////////////// // Company: // Engineer: // // Create Date: 10:31:41 08/25/2007 // Design Name: /
www.eeworm.com/read/440906/1780309

c bf-sign-2.c

/* This test checks promotion of bitfields. Bitfields should be promoted very much like chars and shorts: Bitfields (signed or unsigned) should be promoted to signed int if their value will fi
www.eeworm.com/read/440906/1780610

c bf-sign-1.c

main () { struct { signed int s:3; unsigned int u:3; int i:3; } x = {-1, -1, -1}; if (x.u != 7) abort (); if (x.s != - 1) abort (); if (x.i != -1 && x.i != 7) abor