/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
timemodule.c | 254 #define SET(i,val) PyStructSequence_SET_ITEM(v, i, PyInt_FromLong((long) val))
256 SET(0, p->tm_year + 1900);
257 SET(1, p->tm_mon + 1); /* Want January == 1 */
258 SET(2, p->tm_mday);
259 SET(3, p->tm_hour);
260 SET(4, p->tm_min);
261 SET(5, p->tm_sec);
262 SET(6, (p->tm_wday + 6) % 7); /* Want Monday == 0 */
263 SET(7, p->tm_yday + 1); /* Want January, 1 == 1 */
264 SET(8, p->tm_isdst); [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
timemodule.c | 254 #define SET(i,val) PyStructSequence_SET_ITEM(v, i, PyInt_FromLong((long) val))
256 SET(0, p->tm_year + 1900);
257 SET(1, p->tm_mon + 1); /* Want January == 1 */
258 SET(2, p->tm_mday);
259 SET(3, p->tm_hour);
260 SET(4, p->tm_min);
261 SET(5, p->tm_sec);
262 SET(6, (p->tm_wday + 6) % 7); /* Want Monday == 0 */
263 SET(7, p->tm_yday + 1); /* Want January, 1 == 1 */
264 SET(8, p->tm_isdst); [all...] |
/external/python/cpython2/Modules/ |
timemodule.c | 254 #define SET(i,val) PyStructSequence_SET_ITEM(v, i, PyInt_FromLong((long) val)) 256 SET(0, p->tm_year + 1900); 257 SET(1, p->tm_mon + 1); /* Want January == 1 */ 258 SET(2, p->tm_mday); 259 SET(3, p->tm_hour); 260 SET(4, p->tm_min); 261 SET(5, p->tm_sec); 262 SET(6, (p->tm_wday + 6) % 7); /* Want Monday == 0 */ 263 SET(7, p->tm_yday + 1); /* Want January, 1 == 1 */ 264 SET(8, p->tm_isdst) [all...] |
/cts/tests/tests/location/src/android/location/cts/asn1/base/ |
Asn1SetOf.java | 23 * Implements ASN.1 functionality. An asn1 set is a collection where order is 31 return Asn1Tag.SET;
|
/external/autotest/contrib/ |
remove_old_tests_in_tko.sql | 9 SET @cutoff_date = DATE_SUB(CURDATE(),INTERVAL 180 DAY); 19 -- Some tests may have started_time being NULL, but with finished_time set. 34 SET @cutoff_date = DATE_SUB(@cutoff_date,INTERVAL 5 DAY);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
DERSet.java | 7 * A DER encoded SET object 15 * create an empty set 22 * create a set containing one object 23 * @param obj the object to go in the set 32 * create a set containing a vector of objects. 33 * @param v the vector of objects to make up the set. 42 * create a set containing an array of objects. 43 * @param a the array of objects to make up the set. 91 * ASN.1 descriptions given. Rather than just outputting SET, 101 out.write(BERTags.SET | BERTags.CONSTRUCTED) [all...] |
DLSet.java | 7 * The DLSet encodes ASN.1 SET value without element ordering, 12 * <h4>8.11 Encoding of a set value </h4> 13 * <b>8.11.1</b> The encoding of a set value shall be constructed 17 * ASN.1 definition of the set type, in an order chosen by the sender, 25 * NOTE — The order of data values in a set value is not significant, 29 * <h4>9.3 Set components</h4> 30 * The encodings of the component values of a set value shall 39 * <h4>10.3 Set components</h4> 40 * The encodings of the component values of a set value shall appear 44 * NOTE — Where a component of the set is an untagged choice type [all...] |
/external/tpm2/ |
CreatePrimary.c | 17 // Buffer, or is SET when 'sensitive.data' is not empty; fixedTPM, 48 if( (in->inPublic.t.publicArea.objectAttributes.sensitiveDataOrigin == SET)
|
Load.c | 61 // If parent doesn't have fixedTPM SET, then this can't have 62 // fixedTPM SET. 63 if(in->inPublic.t.publicArea.objectAttributes.fixedTPM == SET)
|
PolicyOR.c | 34 if( session->attributes.isTrialPolicy == SET 46 // Set policyDigest to 0 string and add it to hash
|
RSA_Decrypt.c | 45 if( rsaKey->publicArea.objectAttributes.restricted == SET
|
RSA_Encrypt.c | 15 // TPM_RC_ATTRIBUTES decrypt attribute is not SET in key referenced by keyHandle 43 if(rsaKey->publicArea.objectAttributes.decrypt != SET)
|
Sign.c | 50 || signKey->publicArea.objectAttributes.restricted == SET)
|
Object_spt.c | 146 // sensitive area. The caller should skip over the area set aside for the integrity value and compute the hash 363 if( publicArea->objectAttributes.sign == SET 364 && publicArea->objectAttributes.decrypt == SET 368 if( publicArea->objectAttributes.restricted == SET 369 && publicArea->objectAttributes.sign == SET 381 && ( ( publicArea->objectAttributes.sign == SET 384 || ( publicArea->objectAttributes.decrypt == SET 418 if( publicArea->objectAttributes.restricted == SET 419 && publicArea->objectAttributes.decrypt == SET) 431 && publicArea->objectAttributes.fixedParent == SET [all...] |
Create.c | 18 // Buffer, or is SET when 'sensitive.data' is not empty; fixedTPM, 72 if( (in->inPublic.t.publicArea.objectAttributes.sensitiveDataOrigin == SET)
|
/packages/providers/ContactsProvider/tests/assets/test1/ |
legacy_contacts.sql | 123 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END; 124 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END; 125 CREATE TRIGGER contact_methods_delete DELETE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END; 126 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END; 127 CREATE TRIGGER contact_methods_update UPDATE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END; 128 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END; 129 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END; 130 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END; 131 CREATE TRIGGER groupmembership_delete DELETE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END; 132 CREATE TRIGGER groupmembership_insert INSERT ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END [all...] |
/packages/providers/ContactsProvider/tests/assets/testSynced/ |
legacy_contacts.sql | 147 CREATE TRIGGER contact_methods_INSERT_typeAndLabel AFTER INSERT ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END; 148 CREATE TRIGGER contact_methods_UPDATE_typeAndLabel AFTER UPDATE ON contact_methods WHEN (NEW.type != 0 AND NEW.label IS NOT NULL) OR (NEW.type = 0 AND NEW.label IS NULL) BEGIN SELECT RAISE (ABORT, 'exactly one of type or label must be set'); END; 149 CREATE TRIGGER contact_methods_delete DELETE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END; 150 CREATE TRIGGER contact_methods_insert INSERT ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person;END; 151 CREATE TRIGGER contact_methods_update UPDATE ON contact_methods BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END; 152 CREATE TRIGGER extensions_delete DELETE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END; 153 CREATE TRIGGER extensions_insert INSERT ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END; 154 CREATE TRIGGER extensions_update AFTER UPDATE ON extensions BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person; END; 155 CREATE TRIGGER groupmembership_delete DELETE ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=old.person;END; 156 CREATE TRIGGER groupmembership_insert INSERT ON groupmembership BEGIN UPDATE people SET _sync_dirty=1 WHERE people._id=new.person; END [all...] |
/external/python/cpython2/Modules/_ctypes/ |
cfield.c | 432 /* how to decode the size field, for integer get/set functions */ 436 /* Doesn't work if NUM_BITS(size) == 0, but it never happens in SET() call. */ 449 #define SET(type, x, v, size) \ 524 *(signed char *)ptr = SET(signed char, *(signed char *)ptr, val, size); 543 *(unsigned char *)ptr = SET(unsigned char, *(unsigned char*)ptr, val, size); 564 x = SET(short, x, val, size); 579 field = SET(short, field, val, size); 612 x = SET(unsigned short, x, val, size); 626 field = SET(unsigned short, field, val, size); 660 x = SET(int, x, val, size) [all...] |
/external/valgrind/none/tests/amd64/ |
fb_test_amd64.c | 114 * SET reads 4 input bytes in little-endian byte order and stores them in a 129 #define SET(n) \ 132 SET(n) 134 #define SET(n) \ 168 STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7) 169 STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12) 170 STEP(F, c, d, a, b, SET(2), 0x242070db, 17) 171 STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22) 172 STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7) 173 STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12 [all...] |
/external/libmtp/logs/ |
mtp-detect-asus-memo-pad7.txt | 143 1016: Set device property value 149 9804: Set object property value 152 9811: Set object references 174 dc07: Object File Name STRING data type GET/SET 185 dc07: Object File Name STRING data type GET/SET 196 dc07: Object File Name STRING data type GET/SET 207 dc07: Object File Name STRING data type GET/SET 218 dc07: Object File Name STRING data type GET/SET 238 dc07: Object File Name STRING data type GET/SET 258 dc07: Object File Name STRING data type GET/SET [all...] |
mtp-detect-asus-memo-pad7_2.txt | 78 1016: Set device property value 84 9804: Set object property value 87 9811: Set object references 109 dc07: Object File Name STRING data type GET/SET 120 dc07: Object File Name STRING data type GET/SET 131 dc07: Object File Name STRING data type GET/SET 142 dc07: Object File Name STRING data type GET/SET 153 dc07: Object File Name STRING data type GET/SET 173 dc07: Object File Name STRING data type GET/SET 193 dc07: Object File Name STRING data type GET/SET [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/Makefiles/ |
NmakeSubdirs.bat | 15 @set TOOL_ERROR=0
17 SET NMAKE_COMMAND=%1
27 set /A TOOL_ERROR= %TOOL_ERROR% + %ERRORLEVEL%
41 set /A TOOL_ERROR=%TOOL_ERROR%+%ERRORLEVEL%
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
FrameworkField.java | 77 case SET: 97 case SET:
|
/external/guice/extensions/dagger-adapter/src/com/google/inject/daggeradapter/ |
DaggerMethodScanner.java | 31 import java.util.Set; 41 @Override public Set<? extends Class<? extends Annotation>> annotationClasses() { 55 case SET:
|
/external/llvm/include/llvm/CodeGen/ |
DFAPacketizer.h | 16 // the packetizing mechanism, the input is the set of instruction classes for 18 // consumption for a given set of instructions in a packet. A transition 89 const unsigned *SET);
|