代码搜索:alignment
找到约 6,879 项符合「alignment」的源代码
代码结果 6,879
www.eeworm.com/read/203217/15363869
java ktablecelleditorcheckbox2.java
/*
* Copyright (C) 2004 by Friederich Kupzog Elektronik & Software
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public L
www.eeworm.com/read/113884/15445043
pas dialogconsts.pas
unit DialogConsts;
interface
uses Windows;
const
BUTTON_ID = $80;
EDIT_ID = $81;
STATIC_ID = $82;
LISTBOX_ID = $83;
SCROLLBAR_ID = $84;
COMBOBOX_ID = $85;
t
www.eeworm.com/read/110629/15528662
frm getpixel.frm
VERSION 5.00
Begin VB.Form Form1
Caption = "Getpixel sample by Matt Hart - vbhelp@matthart.com"
ClientHeight = 1830
ClientLeft = 1665
ClientTop = 1545
www.eeworm.com/read/103011/15749384
java alignmentlayout.java
package piy;
import java.awt.*;
import java.util.ArrayList;
import java.io.Serializable;
/**
* Every container is given this layout manager by PIY. This gives every component added
* to a c
www.eeworm.com/read/102017/15794573
txt barebones.txt
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
T H E B A R E B O N E S G U I D E T O H T M L
by Kevin We
www.eeworm.com/read/101052/15855938
h heap.h
/***** uno: heap.h *****/
/* Copyright (c) 2000-2003 by Lucent Technologies - Bell Laboratories */
/* All Rights Reserved. This software is for educational purposes only. */
/* Permission is gi
www.eeworm.com/read/100204/15880439
sunos readme.sunos
It seems that at there is a structure alignment problem
with the structure scsi_cmd at least with gcc.
If you get a message: 'XXX
If you want to run cdrecord on SunOS 4.x on a sparc system
please ma
www.eeworm.com/read/251704/12324023
c hp.c
#include "hprof.h"
static int
real_size(int alignment, int nbytes)
{
if ( alignment > 1 ) {
int wasted;
wasted = alignment - ( nbytes % alignment );
if ( wasted != alignment ) {
nbytes +
www.eeworm.com/read/391005/8428476
h my_malloc.h
#include
typedef long Align; /* for alignment to long boundary */
union header { /* block header: */
struct {
union header *next; /* next block if on Free list */
unsigned int siz