Searched refs:ordinal (Results 1 - 25 of 38) sorted by relevance

12

/macosx-10.10.1/Heimdal-398.1.2/cf/
H A Dw32-def-from-dll.pl54 my ($ordinal, $symbol, $in) = ($1, $2, $3);
80 my ($ordinal, $symbol, $in) = ($1, $2, $3);
92 print "\t@".$ordinal."\n";
96 print "\t@".$ordinal."\n";
106 print $texp."\t@".$ordinal."\n";
109 print "\t@".$ordinal."\n";
/macosx-10.10.1/xnu-2782.1.97/EXTERNAL_HEADERS/mach-o/
H A Dnlist.h146 * If the type is N_SECT then the n_sect field contains an ordinal of the
149 * they are in. This means the same ordinal may very well refer to different
216 * field using the SET_LIBRARY_ORDINAL macro below. The ordinal recorded
223 * an in that case SELF_LIBRARY_ORDINAL is used as the library ordinal. For
224 * defined symbols in all images they also must have the library ordinal set to
231 * This ordinal was added as a feature in Mac OS X 10.3 by reducing the
234 * this case the ordinal value 0xfe (254) must be treated as a library ordinal
238 #define SET_LIBRARY_ORDINAL(n_desc,ordinal) \
239 (n_desc) = (((n_desc) & 0x00ff) | (((ordinal)
[all...]
/macosx-10.10.1/apache-793/httpd/os/win32/
H A Dutil_win32.c92 FARPROC ap_load_dll_func(ap_dlltoken_e fnLib, char* fnName, int ordinal) argument
99 if (ordinal)
100 return GetProcAddress(lateDllHandle[fnLib], (char *) ordinal);
H A Dos.h95 FARPROC ap_load_dll_func(ap_dlltoken_e fnLib, char* fnName, int ordinal);
/macosx-10.10.1/ruby-106/ruby/test/date/
H A Dtest_date_new.rb35 d = Date.ordinal
36 dt = DateTime.ordinal
41 d2 = Date.ordinal
42 dt2 = DateTime.ordinal
46 d = Date.ordinal(-4712,1)
49 d = Date.ordinal(-4712,1.0)
52 d = DateTime.ordinal(-4712,1, 0,0,0, 0)
55 d = DateTime.ordinal(-4712,1, 0,0,0, '+0900')
61 d = Date.ordinal(-1,-1)
64 d = DateTime.ordinal(
[all...]
H A Dtest_switch_hitter.rb100 d = Date.ordinal
102 d = Date.ordinal(-4712, 1)
105 d = Date.ordinal(2001, 2)
107 d = Date.ordinal(2001, 2, Date::JULIAN)
109 d = Date.ordinal(2001, 2, Date::GREGORIAN)
112 d = Date.ordinal(2001, -2, Date::JULIAN)
114 d = Date.ordinal(2001, -2, Date::GREGORIAN)
117 d = DateTime.ordinal
120 d = DateTime.ordinal(-4712, 1)
123 d = DateTime.ordinal(200
[all...]
/macosx-10.10.1/apr-32/apr/apr/misc/win32/
H A Dmisc.c168 FARPROC apr_load_dll_func(apr_dlltoken_e fnLib, char* fnName, int ordinal) argument
176 if (ordinal)
178 (apr_ssize_t)ordinal);
182 if (ordinal)
184 (apr_ssize_t)ordinal);
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/
H A Ddlltool.c54 DLL, with optional ordinal number <integer>.
60 Declares that <external-name> or the exported function whose ordinal number
231 The `short' is the function's ordinal number.
327 int ord; /* Two-byte ordinal value associated with function. */
675 int ordinal; member in struct:export
907 static int d_low_ord; /* Lowest ordinal index. */
908 static int d_high_ord; /* Highest ordinal index. */
928 def_exports (const char *name, const char *internal_name, int ordinal, argument
936 p->ordinal = ordinal;
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dnfrs.h48 UnicodeString ordinal = UNICODE_STRING_SIMPLE("spellout-ordinal"); local
50 return ( name.indexOf(numberingYear) == -1 && name.indexOf(ordinal) == -1 );
/macosx-10.10.1/Csu-85/
H A Dlazy_dylib_loader.c82 static void* getHandleForLazyOrdinal(const macho_header* mh, void* handles[], uint8_t ordinal) argument
90 // walk load commands to find LC_LAZY_LOAD_DYLIB that matches ordinal
100 if ( loadDylibCount == ordinal ) {
212 uint8_t ordinal = GET_LIBRARY_ORDINAL(symbolTable[symbolIndex].n_desc); local
213 void* handle = getHandleForLazyOrdinal(mh, handles, ordinal);
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Dpeicode.h735 unsigned int ordinal,
857 if (ordinal == 0)
862 ((unsigned int *) id4->contents)[0] = ordinal;
864 ((unsigned int *) id5->contents)[0] = ordinal;
867 * (unsigned int *) id4->contents = ordinal | 0x80000000;
868 * (unsigned int *) id5->contents = ordinal | 0x80000000;
908 id6->contents[0] = ordinal & 0xff;
909 id6->contents[1] = ordinal >> 8;
1074 unsigned int ordinal;
1197 ordinal
729 pe_ILF_build_a_bfd(bfd * abfd, unsigned int magic, char * symbol_name, char * source_dll, unsigned int ordinal, unsigned int types) argument
1072 unsigned int ordinal; local
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DProbeSetDataGrid.js188 var ordinal = oldColumn["ordinal"]; variable
190 this.insertColumn(probe.id, newColumn, ordinal);
H A DDataGrid.js426 column["ordinal"] = insertionIndex;
432 var ordinal = existingColumn["ordinal"];
433 if (ordinal >= insertionIndex) // Also adjust the "old" column at insertion index.
434 existingColumn["ordinal"] = ordinal + 1;
516 var removedOrdinal = removedColumn["ordinal"];
518 var ordinal = column["ordinal"];
519 if (ordinal > removedOrdina
609 var ordinal = column["ordinal"]; variable
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/date/
H A Ddate_strptime.c182 goto ordinal;
187 goto ordinal;
633 ordinal:
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/
H A DInjectedScriptSource.js628 var ordinal = parsedCallFrameId["ordinal"]; variable
630 while (--ordinal >= 0 && callFrame)
980 * @param {number} ordinal
983 InjectedScript.CallFrameProxy = function(ordinal, callFrame)
985 this.callFrameId = "{\"ordinal\":" + ordinal + ",\"injectedScriptId\":" + injectedScriptId + "}";
/macosx-10.10.1/dyld-353.2.1/include/mach-o/
H A Ddyld.h143 extern const char* NSSymbolDefinitionNameInObjectFileImage(NSObjectFileImage objectFileImage, uint32_t ordinal) __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_1,__MAC_10_5,__IPHONE_NA,__IPHONE_NA);
145 extern const char* NSSymbolReferenceNameInObjectFileImage(NSObjectFileImage objectFileImage, uint32_t ordinal, bool *tentative_definition) __OSX_AVAILABLE_BUT_DEPRECATED(__MAC_10_1,__MAC_10_5,__IPHONE_NA,__IPHONE_NA);
/macosx-10.10.1/dyld-353.2.1/src/
H A DImageLoaderMachOCompressed.h94 struct LastLookup { long ordinal; uint8_t flags; const char* name; uintptr_t result; const ImageLoader* foundIn; }; member in struct:ImageLoaderMachOCompressed::LastLookup
H A DdyldAPIsInLibSystem.cpp714 * symbol definitions in the NSObjectFileImage. If the ordinal specified is
721 uint32_t ordinal)
729 return p(objectFileImage, ordinal);
751 * undefined symbol in the NSObjectFileImage. If the ordinal specified is
758 uint32_t ordinal,
767 return p(objectFileImage, ordinal, tentative_definition);
719 NSSymbolDefinitionNameInObjectFileImage( NSObjectFileImage objectFileImage, uint32_t ordinal) argument
756 NSSymbolReferenceNameInObjectFileImage( NSObjectFileImage objectFileImage, uint32_t ordinal, bool *tentative_definition) argument
H A DImageLoaderMachOCompressed.cpp599 const uintptr_t ordinal = read_uleb128(p, end); local
603 if ( (ordinal > 0) && (ordinal <= libraryCount()) ) {
604 const ImageLoader* reexportedFrom = libImage((unsigned int)ordinal-1);
609 //dyld::throwf("bad mach-o binary, library ordinal (%u) invalid (max %u) for re-exported symbol %s in %s",
610 // ordinal, libraryCount(), symbol, this->getPath());
784 if ( (last->ordinal == libraryOrdinal)
805 dyld::throwf("bad mach-o binary, unknown special library ordinal (%ld) too big for symbol %s in %s",
812 dyld::throwf("bad mach-o binary, library ordinal (%ld) too big (max %u) for symbol %s in %s",
832 last->ordinal
[all...]
H A DdyldAPIs.cpp912 const char* NSSymbolDefinitionNameInObjectFileImage(NSObjectFileImage objectFileImage, uint32_t ordinal) argument
915 dyld::log("%s(%p,%d)\n", __func__, objectFileImage, ordinal);
916 const ImageLoader::Symbol* sym = objectFileImage->image->getIndexedExportedSymbol(ordinal);
927 const char * NSSymbolReferenceNameInObjectFileImage(NSObjectFileImage objectFileImage, uint32_t ordinal, argument
931 dyld::log("%s(%p,%d)\n", __func__, objectFileImage, ordinal);
932 const ImageLoader::Symbol* sym = objectFileImage->image->getIndexedImportedSymbol(ordinal);
/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/
H A DIOService.h1180 @param argSize Specifies the size of messageArgument, in bytes. If argSize is non-zero, messageArgument is treated as a pointer to argSize bytes of data. If argSize is 0 (the default), messageArgument is treated as an ordinal and passed by value.
1191 @param argSize Specifies the size of argument, in bytes. If argSize is non-zero, argument is treated as a pointer to argSize bytes of data. If argSize is 0 (the default), argument is treated as an ordinal and passed by value.
1520 @param ordinal The number of the desired power state in the power state array.
1524 IOReturn changePowerStateTo( unsigned long ordinal );
1548 @param stateNumber When <code>type</code> is <code>kIOPMSuperclassPolicy1</code>, <code>stateNumber</code> contains the desired power state ordinal for the activity. If the device is in a lower state, the superclass will switch it to this state. This is for devices that can handle some accesses in lower power states; the device is powered up only as far as it needs to be for the activity.
1780 @param ordinal The number of the desired power state in the power state array.
1783 IOReturn changePowerStateToPriv( unsigned long ordinal );
1813 IOReturn changePowerStateWithOverrideTo( IOPMPowerStateIndex ordinal, IOPMRequestTag tag );
1814 IOReturn changePowerStateForRootDomain( IOPMPowerStateIndex ordinal );
/macosx-10.10.1/dyld-353.2.1/launch-cache/
H A DMachOBinder.hpp492 int ordinal = ordinalOfDependentBinder(binder); local
501 entry.other = ordinal;
585 throw "bad mach-o binary, special library ordinal not allowd in dyld shared cache";
588 throw "bad mach-o binary, library ordinal too big";
1001 uint8_t ordinal = GET_LIBRARY_ORDINAL(undefinedSymbol->n_desc()); local
1003 switch ( ordinal ) {
1011 if ( ordinal > fDependentDylibs.size() )
1012 throw "two-level ordinal out of range";
1013 binder = fDependentDylibs[ordinal-1].binder;
1040 throw "bad mach-o binary, special library ordinal no
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DMachO.h663 static inline void SET_LIBRARY_ORDINAL(uint16_t &n_desc, uint8_t ordinal) argument
665 n_desc = (((n_desc) & 0x00ff) | (((ordinal) & 0xff) << 8));
/macosx-10.10.1/xnu-2782.1.97/iokit/IOKit/pwr_mgt/
H A DRootDomain.h395 virtual IOReturn changePowerStateTo( unsigned long ordinal );
396 virtual IOReturn changePowerStateToPriv( unsigned long ordinal );
/macosx-10.10.1/groff-38/groff/src/preproc/pic/
H A Dpic.y268 %type <n> optional_ordinal_last ordinal
1262 ordinal: label
1275 | ordinal LAST
1280 ordinal object_type

Completed in 231 milliseconds

12