HomeSort by relevance Sort by last modified time
    Searched refs:SET (Results 1 - 25 of 405) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/include/gdb/
signals.def 21 SET (GDB_SIGNAL_0, 0, "0", "Signal 0")
23 SET (GDB_SIGNAL_HUP, 1, "SIGHUP", "Hangup")
24 SET (GDB_SIGNAL_INT, 2, "SIGINT", "Interrupt")
25 SET (GDB_SIGNAL_QUIT, 3, "SIGQUIT", "Quit")
26 SET (GDB_SIGNAL_ILL, 4, "SIGILL", "Illegal instruction")
27 SET (GDB_SIGNAL_TRAP, 5, "SIGTRAP", "Trace/breakpoint trap")
28 SET (GDB_SIGNAL_ABRT, 6, "SIGABRT", "Aborted")
29 SET (GDB_SIGNAL_EMT, 7, "SIGEMT", "Emulation trap")
30 SET (GDB_SIGNAL_FPE, 8, "SIGFPE", "Arithmetic exception")
31 SET (GDB_SIGNAL_KILL, 9, "SIGKILL", "Killed"
    [all...]
signals.h 35 (1) This set of signals represents a widely-accepted attempt to
39 recognized that this set of signals has limitations (such as not
52 #define SET(symbol, constant, name, string) \
55 #undef SET
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
set.s 1 # Test the 'r'-type operand and the mapping of SET to OR(I) and SETL.
2 Main SET $45,1123
3 SET $57,$67
4 SET $78,X
5 SET Y,1123
6 SET Y,$67
7 SET Y,X
err-loc-1.s 3 Main SET $45,23
5 SET $57,$67
err-set.s 2 Main SET $45,23
3 SET $57,$67 % Valid, Z is 0.
4 SET $78,X % Valid, Z is 0.
5 SET $7,Y % { dg-error "invalid operands.*value of 967 too large" "" }
err-bspec-1.s 2 Main SET $45,23
err-bspec-3.s 2 Main SET $45,23
set.l 1 GAS for MMIX .*/set\.s page 1
5 2 0000 E32D0463 Main SET \$45,1123
6 3 0004 C1394300 SET \$57,\$67
7 4 0008 C14E1F00 SET \$78,X
8 5 000c E3750463 SET Y,1123
9 6 0010 C1754300 SET Y,\$67
10 7 0014 C1751F00 SET Y,X
14 GAS for MMIX .*/set\.s page 2
18 .*/set\.s:2 \.text:0000000000000000 Main
err-bspec-2.s 2 Main SET $45,23
err-bspec-4.s 2 Main SET $45,23
  /external/tpm2/
Locality.c 27 locality_attributes.locZero = SET;
30 locality_attributes.locOne = SET;
33 locality_attributes.locTwo = SET;
36 locality_attributes.locThree = SET;
39 locality_attributes.locFour = SET;
NV_DefineSpace.c 44 // is SET but phEnableNV is CLEAR, we have to check here
52 if ( (attributes.TPMA_NV_COUNTER == SET || attributes.TPMA_NV_BITS == SET)
67 // Locks may not be SET and written cannot be SET
68 if( attributes.TPMA_NV_WRITTEN == SET
69 || attributes.TPMA_NV_WRITELOCKED == SET
70 || attributes.TPMA_NV_READLOCKED == SET)
90 if( attributes.TPMA_NV_COUNTER == SET)
94 if( attributes.TPMA_NV_BITS == SET)
    [all...]
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/multipackage/a/
AModule.java 22 import static dagger.Provides.Type.SET;
26 @Provides(type = SET) String provideString() {
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/multipackage/b/
BModule.java 22 import static dagger.Provides.Type.SET;
26 @Provides(type = SET) String provideString() {
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
bza.s 5 SET $253,2
7 SET $253,3
getaa.s 5 SET $253,2
7 SET $253,3
jumpa.s 5 SET $253,2
7 SET $253,3
pushja.s 5 SET $253,2
7 SET $253,3
a.s 5 SET $253,4
start.s 5 SET $253,1
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/staticprovides/
SomeStaticModule.java 18 import static dagger.Provides.Type.SET;
25 @Provides(type = SET) static String contributeStringFromAStaticMethod() {
29 @Provides(type = SET) String contributeStringFromAnInstanceMethod() {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
line-map.h 74 /* An index into the set that gives the line mapping at whose end
76 include stack have this set to -1. */
240 /* The abstraction of a set of location maps. There can be several
286 /* A set of chronological line_map structures. */
321 maps are stored in the line table SET. MACRO_MAP_P is a flag
323 #define LINEMAPS_MAP_INFO(SET, MACRO_MAP_P) \
325 ? &((SET)->info_macro) \
326 : &((SET)->info_ordinary))
329 the line table SET. MAP_KIND shall be TRUE if we are interested in
331 #define LINEMAPS_MAPS(SET, MAP_KIND)
    [all...]
  /external/libcups/cups/
md5.c 161 #define SET(a, b, c, d, k, s, Ti)\
165 SET(a, b, c, d, 0, 7, T1);
166 SET(d, a, b, c, 1, 12, T2);
167 SET(c, d, a, b, 2, 17, T3);
168 SET(b, c, d, a, 3, 22, T4);
169 SET(a, b, c, d, 4, 7, T5);
170 SET(d, a, b, c, 5, 12, T6);
171 SET(c, d, a, b, 6, 17, T7);
172 SET(b, c, d, a, 7, 22, T8);
173 SET(a, b, c, d, 8, 7, T9)
    [all...]
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/subcomponent/
ParentMultibindingModule.java 23 import static dagger.Provides.Type.SET;
28 @Provides(type = SET)
33 @Provides(type = SET)
38 @Provides(type = SET)
  /device/linaro/bootloader/edk2/OvmfPkg/
OvmfPkg.fdf.inc 54 SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFdBaseAddress = $(FW_BASE_ADDRESS)
55 SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFirmwareFdSize = $(FW_SIZE)
56 SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFirmwareBlockSize = $(BLOCK_SIZE)
58 SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageVariableBase = $(FW_BASE_ADDRESS)
59 SET gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize = 0xE000
61 SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageEventLogBase = gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageVariableBase + gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize
62 SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageEventLogSize = $(BLOCK_SIZE)
64 SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageFtwWorkingBase = gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageEventLogBase + gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageEventLogSize
65 SET gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize = $(BLOCK_SIZE)
67 SET gUefiOvmfPkgTokenSpaceGuid.PcdOvmfFlashNvStorageFtwSpareBase = gUefiOvmfPkgTokenSpaceGuid.PcdOvmfF (…)
    [all...]

Completed in 515 milliseconds

1 2 3 4 5 6 7 8 91011>>