代码搜索:explicitly

找到约 1,905 项符合「explicitly」的源代码

代码结果 1,905
www.eeworm.com/read/435646/7788390

asm expimp.asm

; ; Test of explicitly and implicitly sized operands ; add esi,2 ; Implicit add esi,123456h ; Implicit add esi,byte 2 ; Explicit add esi,dword 2 ; Explicit add esi,dword 123456h ;
www.eeworm.com/read/296483/8100245

h iterhash.h

#ifndef ITERHASH_H #define ITERHASH_H #include "cryptlib.h" #include "misc.h" /* The following classes are explicitly instantiated in iterhash.cpp IteratedHash IteratedHash // #if
www.eeworm.com/read/144216/5752088

pl svr4.pl

# NCR MP-RAS. Thanks to Doug Hendricks for this info. # Configure sets osname=svr4.0, osvers=3.0, archname='3441-svr4.0' # This system needs to explicitly link against -lmw to pull in some # symbols
www.eeworm.com/read/134009/5895973

pl svr4.pl

# NCR MP-RAS. Thanks to Doug Hendricks for this info. # Configure sets osname=svr4.0, osvers=3.0, archname='3441-svr4.0' # This system needs to explicitly link against -lmw to pull in some # symbols
www.eeworm.com/read/150547/12286891

asm expimp.asm

; ; Test of explicitly and implicitly sized operands ; add esi,2 ; Implicit add esi,123456h ; Implicit add esi,byte 2 ; Explicit add esi,dword 2 ; Explicit add esi,dword 123456h ;
www.eeworm.com/read/123064/14650111

asm expimp.asm

; ; Test of explicitly and implicitly sized operands ; add esi,2 ; Implicit add esi,123456h ; Implicit add esi,byte 2 ; Explicit add esi,dword 2 ; Explicit add esi,dword 123456h ;
www.eeworm.com/read/118993/14845384

asm expimp.asm

; ; Test of explicitly and implicitly sized operands ; add esi,2 ; Implicit add esi,123456h ; Implicit add esi,byte 2 ; Explicit add esi,dword 2 ; Explicit add esi,dword 123456h ;
www.eeworm.com/read/193974/5138027

py aifc.py

"""Stuff to parse AIFF-C and AIFF files. Unless explicitly stated otherwise, the description below is true both for AIFF-C files and AIFF files. An AIFF-C file has the following structure. +-----
www.eeworm.com/read/192559/5154318

cpp dxguid.cpp

#define INITGUID #include #include // it doesn't hurt to ask for it explicitly #include "ddrawp.h" // ddraw external guids. #include "ddrawi.h" // ddraw internal guids. #
www.eeworm.com/read/366702/2865593

c pr5645.c

// PR5645: gcc warns that pure virtual class not explicitly initialized. // { dg-do compile } // { dg-options "-Wall -Wextra" } class a { public: virtual int f() = 0; virtual int g() = 0; }; c