代码搜索:Check

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

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

h ssse3-check.h

#include #include #include "cpuid.h" static void ssse3_test (void); int main () { unsigned int eax, ebx, ecx, edx; if (!__get_cpuid (1, &eax, &ebx, &ecx, &edx)) retur
www.eeworm.com/read/366702/2865075

h sse3-check.h

#include #include #include "cpuid.h" static void sse3_test (void); int main () { unsigned int eax, ebx, ecx, edx; if (!__get_cpuid (1, &eax, &ebx, &ecx, &edx)) return
www.eeworm.com/read/366702/2865165

h sse4a-check.h

#include #include #include "cpuid.h" static void sse4a_test (void); int main () { unsigned int eax, ebx, ecx, edx; if (!__get_cpuid (0x80000001, &eax, &ebx, &ecx, &edx))
www.eeworm.com/read/366702/2865209

h sse5-check.h

#include #include "cpuid.h" static void sse5_test (void); int main () { unsigned int eax, ebx, ecx, edx; if (!__get_cpuid (0x80000001, &eax, &ebx, &ecx, &edx)) return 0; /*
www.eeworm.com/read/366702/2865228

h sse2-check.h

#include #include #include "cpuid.h" static void sse2_test (void); int main () { unsigned int eax, ebx, ecx, edx; if (!__get_cpuid (1, &eax, &ebx, &ecx, &edx)) return
www.eeworm.com/read/366702/2865333

c struct-ret-check.c

/* Copyright (C) 2006 Free Software Foundation, Inc. */ /* Contributed by Carlos O'Donell on 2006-03-14 */ /* Test that GCC follows the SPARC 32-bit psABI with regards to structure return checking
www.eeworm.com/read/366702/2872741

adb check_elaboration_code.adb

-- { dg-do run } with Bug_Elaboration_Code; use Bug_Elaboration_Code; procedure Check_Elaboration_Code is begin if I /= J then raise Program_Error; end if; end Check_Elaboration_Code;
www.eeworm.com/read/366702/2872791

adb discr_range_check.adb

-- { dg-do compile } -- { dg-options "-gnatws" } procedure discr_range_check is Default_First_Entry : constant := 1; task type Server_T (First_Entry : Positive := Default_First_Entry) is
www.eeworm.com/read/366702/2876187

f recursive_check_1.f

! { dg-do compile } ! PR fortran/26551 SUBROUTINE SUB() CALL SUB() ! { dg-error "cannot call itself, as it is not RECURSIVE" } END SUBROUTINE FUNCTION FUNC() RESULT (FOO)
www.eeworm.com/read/366702/2876293

f bounds_check_2.f

! { dg-do run } ! { dg-options "-fbounds-check" } ! PR fortran/19777 implicit none integer npts parameter (npts=10) double precision v(npts) double precis