代码搜索:shift

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

代码结果 10,000
www.eeworm.com/read/378183/9248184

dat asslandat76.dat

算术左移指令 SAL(Shift Arithmetic Left) 格式: SAL OPRD1,COUNT ---- 功能: 其中OPRD1、COUNT与指令SHL相同.本指令与SHL的功能也完全相同, 这是因为逻辑左移指令与算术左移指令所要 ---- 完成的操作是一样的. 如果 SAL将OPRD1的最高位移至CF, 改变了原来的CF值,则溢出标志位OF=1,表示移位
www.eeworm.com/read/378183/9248374

dat asslandat72.dat

逻辑左移指令 SHL(SHift logical left) 格式: SHL OPRD1,COUNT ---- 功能: 对给定的目的操作数左移COUNT次,每次移位时最高位移入标志位CF中,最低位补零. 其中OPRD1为目的操作数, ---- 可以是通用寄存器或存储器操作数.COUNT代表移位的次数(或位数).移位一次,COUNT=1;移位多于1次时,
www.eeworm.com/read/179788/9337093

pas mousekey.pas

unit MouseKey; interface uses Qt, SysUtils, Types, Classes, Variants, QGraphics, QControls, QForms, QDialogs, QStdCtrls, QExtCtrls; type TFrmMain = class(TForm) Memo: TMemo; GrpBoxShi
www.eeworm.com/read/179788/9337102

~pas mousekey.~pas

unit MouseKey; interface uses Qt, SysUtils, Types, Classes, Variants, QGraphics, QControls, QForms, QDialogs, QStdCtrls, QExtCtrls; type TFrmMain = class(TForm) Memo: TMemo; GrpBoxShi
www.eeworm.com/read/375619/9355624

mkh

#! /bin/sh # mkh - pull headers out of C source PATH=/bin:/usr/bin ; export PATH # egrep pattern to pick out marked lines egrep='^ =([ ]|$)' # Sed program to process marked lines into lines for the
www.eeworm.com/read/179398/9358270

chf cvconvertscale.chf

void cvConvertScale(CvArr* src, CvArr* dst, double scale, double shift) { void *fptr; fptr = dlsym(_Chcv_handle, "cvConvertScale_chdl"); if(fptr == NULL) { fprintf(_stderr, "
www.eeworm.com/read/179398/9358284

chf cvconvertscaleabs.chf

void cvConvertScaleAbs(CvArr* src, CvArr* dst, double scale, double shift) { void *fptr; fptr = dlsym(_Chcv_handle, "cvConvertScaleAbs_chdl"); if(fptr == NULL) { fprintf(_std
www.eeworm.com/read/179398/9358286

chf cvrectangle.chf

void cvRectangle(CvArr* img, CvPoint pt1, CvPoint pt2, CvScalar color, int thickness, int line_type, int shift) { void *fptr; fptr = dlsym(_Chcv_handle, "cvRectangle_chdl"); if(fptr =
www.eeworm.com/read/179398/9358751

chf cvline.chf

void cvLine(CvArr* img, CvPoint pt1, CvPoint pt2, CvScalar color, int thickness, int line_type, int shift) { void *fptr; fptr = dlsym(_Chcv_handle, "cvLine_chdl"); if(fptr == NULL) {
www.eeworm.com/read/179398/9358991

chf cvcircle.chf

void cvCircle(CvArr* img, CvPoint center, int radius, CvScalar color, int thickness, int line_type, int shift) { void *fptr; fptr = dlsym(_Chcv_handle, "cvCircle_chdl"); if(fptr == NU