このページを編集する際は、編集に関する方針に従ってください。

概要

引数

  1. cur_offset :
  2. attalign :

実装

#define att_align(cur_offset, attalign) \ ( \

	((attalign) == 'i') ? INTALIGN(cur_offset) : \
	 (((attalign) == 'c') ? ((long)(cur_offset)) : \
	  (((attalign) == 'd') ? DOUBLEALIGN(cur_offset) : \
		( \
			AssertMacro((attalign) == 's'), \
			SHORTALIGN(cur_offset) \
		))) \

)

呼出元

備考

* att_align aligns the given offset as needed for a datum of alignment
* requirement attalign.  The cases are tested in what is hopefully something
* like their frequency of occurrence.

履歴

コメント



トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS