代码搜索:Packing
找到约 2,087 项符合「Packing」的源代码
代码结果 2,087
www.eeworm.com/read/10438/186613
set
// set standard header
#pragma once
#ifndef _SET_
#define _SET_
#ifndef RC_INVOKED
#include
#pragma pack(push,_CRT_PACKING)
#pragma warning(push,3)
_STD_BEGIN
// TEMPLATE CLASS
www.eeworm.com/read/38039/1094591
mnu ribbonepdir.mnu
RIBBON#PACKING
#
Flat#in#X-axis
Align the flat direction of a ribbon cable in the X-axis direction of an entry port.
#
Flat#in#Y-axis
Align the flat direction of a ribbon cable in the Y-axis directio
www.eeworm.com/read/242732/4540631
todo
TODO
- Make most files common for OS/2 and NT
- Move settings from mc.ini to the registry for Windows NT/95 (optionally?)
- Fix opendir/readdir d_date and d_time packing (they return 10).
- Fix
www.eeworm.com/read/229812/4742148
txt mfc.txt
-- C7 has the following bug (-Zp8 packing enabled)
struct P {
char c; // offset 0
double d; // offset 8
};
struct S { // vfptr offset 0
double d; // offset 2 (should be offset
www.eeworm.com/read/409921/2223167
todo
TODO
- Make most files common for OS/2 and NT
- Move settings from mc.ini to the registry for Windows NT/95 (optionally?)
- Fix opendir/readdir d_date and d_time packing (they return 10).
- Fix
www.eeworm.com/read/294317/8241606
cpp bestfit.cpp
// best fit bin packing
#include
#include
#include "xcept.h"
#include "dbst.h"
class BinNode
{
friend void BestFitPack(int *, int, int);
friend ostream& operator
www.eeworm.com/read/201477/15407363
cpp bestfit.cpp
// best fit bin packing
#include
#include
#include "dbst.h"
#include "xcept.h"
class BinNode {
friend void BestFitPack(int *, int, int);
friend ostream& operat
www.eeworm.com/read/277285/10649337
listing_6_11
!
! Resource file used to produce Figure 6.x
!
*RowCol.orientation: HORIZONTAL
*RowCol.packing: PACK_COLUMN
*RowCol.numColumns: 16
*RowCol.background: blue
*RowCol.isAligned: FALSE
*Lbl.foreground:
www.eeworm.com/read/459616/7270273
cpp bestfit.cpp
// best fit bin packing
#include
#include
#include "dbst.h"
#include "xcept.h"
class BinNode {
friend void BestFitPack(int *, int, int);
friend ostream& operator
www.eeworm.com/read/459616/7270309
cpp firstfit.cpp
// First fit bin packing
#include
#include "winner.h"
int winner(int a[], int b, int c)
{// For a max winner tree.
if (a[b] >= a[c]) return b;
return c;
}
void FirstFitPack(int s