Searched refs:align (Results 76 - 100 of 609) sorted by relevance

1234567891011>>

/macosx-10.9.5/RubyCocoa-80/RubyCocoa/misc/libffi/src/powerpc/
H A Ddarwin.S44 .align 2
48 .align 2
51 .align 2
179 .align 2
182 .align 2
204 .align LOG2_GPR_BYTES
241 .align LOG2_GPR_BYTES
244 .align LOG2_GPR_BYTES
H A Ddarwin_closure.S45 .align LOG2_GPR_BYTES
49 .align LOG2_GPR_BYTES
124 (4 instructions). For cache effectiveness we align to a 16 byte boundary
127 .align 4
266 .align LOG2_GPR_BYTES
291 .align LOG2_GPR_BYTES
294 .align LOG2_GPR_BYTES
297 .align LOG2_GPR_BYTES
316 .align LOG2_GPR_BYTES
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLAppletElement.idl26 [Reflect] attribute DOMString align;
H A DHTMLEmbedElement.idl26 [Reflect] attribute DOMString align;
H A DHTMLTableCellElement.idl24 [Reflect] attribute DOMString align;
H A DHTMLTableRowElement.idl25 [Reflect] attribute DOMString align;
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGPreserveAspectRatio.idl47 [StrictTypeChecking, SetterRaisesException] attribute unsigned short align;
/macosx-10.9.5/cctools-845/as/
H A Dsparc-check.c161 print_f_reg(int align) argument
165 printf("%%%s", reg_names[(i++) & ~align]);
/macosx-10.9.5/cctools-845/include/mach-o/
H A Dnlist.h170 #define SET_COMM_ALIGN(n_desc,align) \
171 (n_desc) = (((n_desc) & 0xf0ff) | (((align) & 0x0f) << 8))
/macosx-10.9.5/dtrace-118.1/head/
H A Ddarwin_shim.h78 #define P2ROUNDUP(x, align) (-(-(x) & -(align)))
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/crt-custom/
H A Dmystart.s9 .align 2
38 .align 2
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/CommonKClient/mac_kclient/
H A DKrbDriver.h82 #pragma options align=mac68k
148 #pragma options align=reset
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/KerberosPreferences/
H A DKerberosPreferences.h75 /* $Copyright: * * Copyright � 2000 by the Massachusetts Institute of Technology. * * All rights reserved. * * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose and without fee is hereby granted, * provided that the above copyright notice appear in all copies and that * both that copyright notice and this permission notice appear in * supporting documentation, and that the name of M.I.T. not be used in * advertising or publicity pertaining to distribution of the software * without specific, written prior permission. Furthermore if you modify * this software you must label your software as modified software and not * distribute it in such a fashion that it might be confused with the * original MIT software. M.I.T. makes no representations about the * suitability of this software for any purpose. It is provided "as is" * without express or implied warranty. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * * Individual source code files are copyright MIT, Cygnus Support, * OpenVision, Oracle, Sun Soft, FundsXpress, and others. * * Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, * and Zephyr are trademarks of the Massachusetts Institute of Technology * (MIT). No commercial use of these trademarks may be made without prior * written permission of MIT. * * "Commercial use" means use of a name in a product or other for-profit * manner. It does NOT prevent a commercial firm from referring to the MIT * trademarks in order to convey information (although in doing so, * recognition of their trademark status should be given). * $ */ /* $Header: /Volumes/backup/dsmigrate/Dumps/../CVS/passwordserver_sasl/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/KerberosPreferences/KerberosPreferences.h,v 1.4 2005/01/10 19:17:29 snsimon Exp $ */ /* * * PreferenceLib.h -- Functions to handle Kerberos Preference file access. * */ #ifndef __KERBEROSPREFERENCES__ #define __KERBEROSPREFERENCES__ #include <KerberosSupport/KerberosConditionalMacros.h> #if TARGET_API_MAC_OSX && TARGET_API_MAC_CARBON #include <CoreServices/CoreServices.h> #elif TARGET_API_MAC_OS8 || TARGET_API_MAC_CARBON #include <MacTypes.h> #include <Files.h> #else #error "Unknown OS" #endif #if PRAGMA_ONCE #pragma once #endif #ifdef __cplusplus extern "C" { #endif #if PRAGMA_IMPORT #pragma import on #endif #if PRAGMA_STRUCT_ALIGN #pragma options align=mac68k #elif PRAGMA_STRUCT_PACKPUSH #pragma pack(push, 2) #elif PRAGMA_STRUCT_PACK #pragma pack(2) #endif /* ************************************************ */ /* Locations for where to look for preference files */ /* ************************************************ */ enum { kpUserPreferences = 0x00000001, kpSystemPreferences = 0x00000002 }; /* ********************** */ /* Name, Creator and Type */ /* ********************** */ #define kerberosPreferences_FileType FOUR_CHAR_CODE ('pref') #define kerberosPreferences_Creator FOUR_CHAR_CODE ('Krb ') #define kerberosPreferences_FileName "\pKerberos Preferences" /* ******************* */ /* Function prototypes */ /* ******************* */ /* ********************************************************* */ /* Creates a valid preference file at the location specified */ /* ********************************************************* */ OSErr KPInitializeWithDefaultKerberosLibraryPreferences ( const FSSpec* prefLocation); /* ****************************************************************************** */ /* File the array with list of preferences that match the options provided */ /* ****************************************************************************** */ OSErr KPGetListOfPreferencesFiles ( UInt32 userSystemFlags, FSSpecPtr* thePrefFiles, UInt32* outNumberOfFiles); /* ********************************************************* */ /* Free the array containing the list of preference files */ /* ********************************************************* */ void KPFreeListOfPreferencesFiles ( FSSpecPtr thePrefFiles); /* ********************************************************* */ /* Check if file exists and is readable */ /* ********************************************************* */ OSErr KPPreferencesFileIsReadable ( const FSSpec* inPrefsFile); /* ********************************************************* */ /* Check if file is writable */ /* ********************************************************* */ OSErr KPPreferencesFileIsWritable ( const FSSpec* inPrefsFile); /* ********************************************************* */ /* Create an empty file */ /* ********************************************************* */ OSErr KPCreatePreferencesFile ( const FSSpec* inPrefsFile); #if PRAGMA_STRUCT_ALIGN #pragma options align=reset #elif PRAGMA_STRUCT_PACKPUSH #pragma pack(pop) #elif PRAGMA_STRUCT_PACK #pragma pack() #en (…)
1 /* $Copyright: variable
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/CommonKClient/mac_kclient3/Headers/TicketKeeper/
H A DTicketKeeperMenuStateProtocol.h14 /* * TicketKeeperMenuStateProcotol.h * * Declarations of types for constants used in the Process-to-Process Communication * protocol used between TicketKeeperLib and TicketKeeper. This should not be used * by others * */ #ifndef TicketKeeperMenuStateProcotol_h #define TicketKeeperMenuStateProcotol_h #if PRAGMA_STRUCT_ALIGN #pragma options align=mac68k #elif PRAGMA_STRUCT_PACKPUSH #pragma pack(push, 2) #elif PRAGMA_STRUCT_PACK #pragma pack(2) #endif /* Use these to find the PPC port for TicketKeeper */ enum { mkPort_Creator = FOUR_CHAR_CODE ('MnuK'), mkPort_Type = FOUR_CHAR_CODE ('appe') }; /* Use these on PPC blocks sent to TK. The block type determines what command you are sending */ enum { mkBlock_Creator = FOUR_CHAR_CODE ('MnuK'), mkBlock_Type_MenuState = FOUR_CHAR_CODE ('Menu'), mkBlock_Type_SetDefault = FOUR_CHAR_CODE ('SDef'), mkBlock_Type_Logout = FOUR_CHAR_CODE ('LotP'), mkBlock_Type_LogoutDefault = FOUR_CHAR_CODE ('Lout'), mkBlock_Type_NewLogin = FOUR_CHAR_CODE ('Logn'), mkBlock_Type_Renew = FOUR_CHAR_CODE ('RnwP'), mkBlock_Type_RenewDefault = FOUR_CHAR_CODE ('Renw'), mkBlock_Type_ChangePassword = FOUR_CHAR_CODE ('ChpP'), mkBlock_Type_ChangePasswordDefault = FOUR_CHAR_CODE ('Chps'), mkBlock_Type_MoveFloaterStructureRegion = FOUR_CHAR_CODE ('MFst'), mkBlock_Type_SetDrawPies = FOUR_CHAR_CODE ('pie?'), mkBlock_Type_SetHasCloseBox = FOUR_CHAR_CODE ('cls?'), mkBlock_Type_SetIsVisible = FOUR_CHAR_CODE ('vis?'), mkBlock_Type_SetIsZoomedOut = FOUR_CHAR_CODE ('zum?'), mkBlock_Type_GetIsVisible = FOUR_CHAR_CODE ('?vis'), mkBlock_Type_GetDrawPies = FOUR_CHAR_CODE ('?pie'), mkBlock_Type_GetHasCloseBox = FOUR_CHAR_CODE ('?cls'), mkBlock_Type_GetIsZoomedOut = FOUR_CHAR_CODE ('?zum'), mkBlock_Type_OpenKerberosControlPanel = FOUR_CHAR_CODE ('OKCP') }; /* Version number for menu state command */ enum { mkReply_MenuState_CurrentVersion = 2 }; /* * MenuState ('Menu') command returns a blob of data in the following format: * (but you should really use the functions in TickerKeeperLib.h to parse it) * * [4 Bytes] Size of the structure * [4 Bytes] Version of the structure (current = 2) * * [4 Bytes] Last change time for the default cache information * [4 Bytes] Last change time for the cache list information * [4 Bytes] 1 if default cache has valid tickets, 0 otherwise * [4 bytes] Expiration time of the default cache in Mac epoch * [PString] Principal of the default cache * [PString] Display principal of the default cache (quoting removed) * [PString] Short display principal of the default cache (quoting and default realm removed) * * [4 Bytes] Number of caches * * [4 Bytes] 1 if the first cache is default * [4 Bytes] Version of the first cache * [4 Bytes] 1 if the first cache has valid tickets * [4 Bytes] start time of the first cache * [4 Bytes] expiration time of the first cache * [PString] Principal of the 1st cache * [PString] Display principal if the 1st cache (quoting removed) * [PString] Short display principal if the 1st cache (quoting and default realm removed) * * ... * * [4 Bytes] 1 if the last cache is default * [4 Bytes] Version of the last cache * [4 Bytes] 1 if the last cache has valid tickets * [4 Bytes] start time of the last cache * [4 Bytes] expiration time of the last cache * [PString] Principal of the last cache * [PString] Display principal if the nth cache (quoting removed) * [PString] Short display principal if the nth cache (quoting and default realm removed) */ struct MenuStateHeader { UInt32 version; UInt32 defaultCacheLastChangeTime; UInt32 cacheListLastChangeTime; UInt32 defaultCacheHasValidTickets; UInt32 defaultCacheExpiration; Str255 defaultCachePrincipal; }; struct CacheEntry { UInt32 isDefault; UInt32 version; UInt32 isValid; UInt32 startTime; UInt32 expirationTime; Str255 principal; }; struct CacheList { UInt32 numCaches; CacheEntry cacheList; }; /* * SetDefaultPrincipal, Logout, and Renew commands take a blob of data which contains the * new principal to be made default (version + string format) */ struct PrincipalParam { UInt32 version; Str255 principal; }; struct MoveFloaterStructureRegionParam { Rect bounds; }; typedef PrincipalParam SetDefaultParam; typedef PrincipalParam LogoutParam; typedef PrincipalParam RenewParam; typedef PrincipalParam ChangePasswordParam; typedef Boolean SetDrawPiesParam; typedef Boolean SetHasCloseBoxParam; typedef Boolean SetIsVisibleParam; typedef Boolean SetIsZoomedOutParam; #if PRAGMA_STRUCT_ALIGN #pragma options align=reset #elif PRAGMA_STRUCT_PACKPUSH #pragma pack(pop) #elif PRAGMA_STRUCT_PACK #pragma pack() #en (…)
1 / variable
/macosx-10.9.5/postfix-252/postfix/mantools/
H A Dmakemanidx67 <tr><td align="center"> 1 </td> <td> Commands </td> </tr>
69 <tr><td align="center"> 3 </td> <td> Library routines </td> </tr>
71 <tr><td align="center"> 5 </td> <td> File formats </td> </tr>
73 <tr><td align="center"> 8 </td> <td> Daemons </td> </tr>
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-en/
H A Dradio2.rb36 align = TkVariable.new
59 ['size', size], ['color', color], ['compound', align])
102 TkRadioButton.new(f_right, 'text'=>a, 'variable'=>align, 'relief'=>'flat',
104 'command'=>proc{label.compound(align.value)})
H A Dradio3.rb36 align = TkVariable.new
47 ['color', color], ['compound', align])
110 TkRadioButton.new(f_right, 'text'=>a, 'variable'=>align, 'relief'=>'flat',
112 'command'=>proc{label.compound(align.value)})
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-jp/
H A Dradio2.rb38 align = TkVariable.new
62 ['size', size], ['color', color], ['compound', align])
105 TkRadioButton.new(f_right, 'text'=>a, 'variable'=>align, 'relief'=>'flat',
107 'command'=>proc{label.compound(align.value)})
H A Dradio3.rb38 align = TkVariable.new
49 ['color', color], ['compound', align])
112 TkRadioButton.new(f_right, 'text'=>a, 'variable'=>align, 'relief'=>'flat',
114 'command'=>proc{label.compound(align.value)})
/macosx-10.9.5/tcl-102/tcl_ext/memchan/memchan/isaac/
H A Dstandard.h62 #ifndef align
63 # define align(a) (((ub4)a+(sizeof(void *)-1))&(~(sizeof(void *)-1))) macro
64 #endif /* align */
/macosx-10.9.5/xnu-2422.115.4/EXTERNAL_HEADERS/mach-o/
H A Dnlist.h170 #define SET_COMM_ALIGN(n_desc,align) \
171 (n_desc) = (((n_desc) & 0xf0ff) | (((align) & 0x0f) << 8))
/macosx-10.9.5/WebCore-7537.78.1/platform/efl/DefaultTheme/widget/scrollbar/
H A Dscrollbar.edc86 align: 1.0 0.5;
118 align: 0.5 0.5;
137 align: 0.5 0.5;
157 align: 0.5 0.5;
264 align: 0.5 1.0;
295 align: 0.5 0.5;
315 align: 0.5 0.5;
/macosx-10.9.5/cctools-845/misc/
H A Dlipo.c137 uint32_t align; member in struct:segalign
407 segalign->align = 0;
410 segalign->align++;
777 printf(" align 2^%u (%d)\n",
778 input_files[i].fat_arches[j].align,
779 1 << input_files[i].fat_arches[j].align);
849 if(thin_files[j].fat_arch.align > segaligns[i].align)
853 1 << segaligns[i].align,
855 1 << thin_files[j].fat_arch.align);
1536 uint32_t i, j, cur_align, align; local
1628 uint32_t i, j, cur_align, align; local
1708 uint32_t align, segalign; local
2439 uint32_t target_page_size, align, onebit; local
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/mutex/
H A Dmut_method.c164 __mutex_set_align(dbenv, align)
166 u_int32_t align;
174 if (align == 0 || !POWER_OF_TWO(align)) {
180 dbenv->mutex_align = align;
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/misc/libffi/src/
H A Dprep_cif.c179 int align = (*ptr)->alignment; local
180 if (align > 4) align = 4;
181 if ((align - 1) & bytes)
182 bytes = ALIGN(bytes, align);

Completed in 424 milliseconds

1234567891011>>