/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformSetupDxe/ |
D | UnCore.vfi | 45 …option text = STRING_TOKEN(STR_ENABLE), value =1, flags = MANUFACTURING | DEFAULT | RESET_REQUIRED; 46 option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = RESET_REQUIRED; 52 option text = STRING_TOKEN(STR_GOP_BRIGHT_20), value =2, flags = RESET_REQUIRED; 53 option text = STRING_TOKEN(STR_GOP_BRIGHT_40), value =3, flags = RESET_REQUIRED; 54 option text = STRING_TOKEN(STR_GOP_BRIGHT_60), value =4, flags = RESET_REQUIRED; 55 …option text = STRING_TOKEN(STR_GOP_BRIGHT_80), value =5, flags = MANUFACTURING| DEFAULT| RESET_REQ… 56 option text = STRING_TOKEN(STR_GOP_BRIGHT_100), value =6, flags = RESET_REQUIRED; 57 option text = STRING_TOKEN(STR_GOP_BRIGHT_120), value =7, flags = RESET_REQUIRED; 58 option text = STRING_TOKEN(STR_GOP_BRIGHT_140), value =8, flags = RESET_REQUIRED; 59 option text = STRING_TOKEN(STR_GOP_BRIGHT_160), value =9, flags = RESET_REQUIRED; [all …]
|
D | SouthClusterConfig.vfi | 103 …option text = STRING_TOKEN (STR_AUTO), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED; 104 option text = STRING_TOKEN (STR_GEN1), value = 1, flags = RESET_REQUIRED; 105 option text = STRING_TOKEN (STR_GEN2), value = 2, flags = RESET_REQUIRED; 110 …option text = STRING_TOKEN (STR_AUTO), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED; 111 option text = STRING_TOKEN (STR_GEN1), value = 1, flags = RESET_REQUIRED; 112 option text = STRING_TOKEN (STR_GEN2), value = 2, flags = RESET_REQUIRED; 117 …option text = STRING_TOKEN (STR_AUTO), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED; 118 option text = STRING_TOKEN (STR_GEN1), value = 1, flags = RESET_REQUIRED; 119 option text = STRING_TOKEN (STR_GEN2), value = 2, flags = RESET_REQUIRED; 124 …option text = STRING_TOKEN (STR_AUTO), value = 0, flags = DEFAULT | MANUFACTURING | RESET_REQUIRED; [all …]
|
D | DebugConfig.vfi | 48 …option text = STRING_TOKEN (STR_ENABLE), value = 1, flags = DEFAULT | MANUFACTURING | RESET_REQU… 49 option text = STRING_TOKEN (STR_DISABLE), value = 0, flags = RESET_REQUIRED; 58 option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = RESET_REQUIRED; 59 option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = DEFAULT | RESET_REQUIRED; 66 option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = DEFAULT | RESET_REQUIRED; 67 option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = RESET_REQUIRED; 73 option text = STRING_TOKEN(STR_DISABLE), value = 0, flags = DEFAULT | RESET_REQUIRED; 74 option text = STRING_TOKEN(STR_ENABLE), value = 1, flags = RESET_REQUIRED; 87 option text = STRING_TOKEN (STR_LM_MEMORY_16MB), value = 16384, flags = RESET_REQUIRED; 88 option text = STRING_TOKEN (STR_LM_MEMORY_8MB), value = 8192, flags = RESET_REQUIRED; [all …]
|
/device/google/marlin/power/ |
D | metadata-parser.c | 37 char *attribute, unsigned int attribute_size, char *value, unsigned int value_size) in parse_metadata() argument 49 attribute[0] = value[0] = '\0'; in parse_metadata() 58 strlcpy(value, attribute_value_delim + 1, value_size); in parse_metadata() 67 char attribute[1024], value[1024], *saveptr; in parse_cam_preview_metadata() local 72 attribute, sizeof(attribute), value, sizeof(value))) == METADATA_PARSING_CONTINUE) { in parse_cam_preview_metadata() 75 if (strlen(value) > 0) { in parse_cam_preview_metadata() 76 cam_preview_metadata->hint_id = atoi(value); in parse_cam_preview_metadata() 82 if (strlen(value) > 0) { in parse_cam_preview_metadata() 83 cam_preview_metadata->state = atoi(value); in parse_cam_preview_metadata() 99 char attribute[1024], value[1024], *saveptr; in parse_video_encode_metadata() local [all …]
|
/device/google/contexthub/firmware/os/cpu/cortexm4/inc/cpu/cmsis/ |
D | core_cmInstr.h | 129 __attribute__((section(".rev16_text"))) __STATIC_INLINE __ASM uint32_t __REV16(uint32_t value) in __REV16() argument 144 __attribute__((section(".revsh_text"))) __STATIC_INLINE __ASM int32_t __REVSH(int32_t value) in __REVSH() argument 171 #define __BKPT(value) __breakpoint(value) argument 225 #define __STREXB(value, ptr) __strex(value, ptr) argument 237 #define __STREXH(value, ptr) __strex(value, ptr) argument 249 #define __STREXW(value, ptr) __strex(value, ptr) argument 300 __attribute__((section(".rrx_text"))) __STATIC_INLINE __ASM uint32_t __RRX(uint32_t value) in __RRX() argument 345 #define __STRBT(value, ptr) __strt(value, ptr) argument 355 #define __STRHT(value, ptr) __strt(value, ptr) argument 365 #define __STRT(value, ptr) __strt(value, ptr) argument [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | Python-ast.c | 392 PyObject *key, *value, *fields; in ast_type_init() local 427 while (PyDict_Next(kw, &i, &key, &value)) { in ast_type_init() 428 res = PyObject_SetAttr(self, key, value); in ast_type_init() 551 PyObject *value; in ast2obj_list() local 555 value = func(asdl_seq_GET(seq, i)); in ast2obj_list() 556 if (!value) { in ast2obj_list() 560 PyList_SET_ITEM(result, i, value); in ast2obj_list() 1075 Return(expr_ty value, int lineno, int col_offset, PyArena *arena) in Return() argument 1082 p->v.Return.value = value; in Return() 1103 Assign(asdl_seq * targets, expr_ty value, int lineno, int col_offset, PyArena in Assign() argument [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | Python-ast.c | 392 PyObject *key, *value, *fields; in ast_type_init() local 427 while (PyDict_Next(kw, &i, &key, &value)) { in ast_type_init() 428 res = PyObject_SetAttr(self, key, value); in ast_type_init() 551 PyObject *value; in ast2obj_list() local 555 value = func(asdl_seq_GET(seq, i)); in ast2obj_list() 556 if (!value) { in ast2obj_list() 560 PyList_SET_ITEM(result, i, value); in ast2obj_list() 1092 Return(expr_ty value, int lineno, int col_offset, PyArena *arena) in Return() argument 1099 p->v.Return.value = value; in Return() 1120 Assign(asdl_seq * targets, expr_ty value, int lineno, int col_offset, PyArena in Assign() argument [all …]
|
/device/linaro/bootloader/edk2/IntelFspPkg/Tools/ |
D | PatchFv.py | 35 value = 0 38 value = value << 8 | bytearray[idx] 41 return value 82 def patchDataInFile (binfile, offset, value, len=1): argument 91 bytearray.append(value & 0xFF) 92 value = value >> 8 520 value = self.getGuidOff(var) 522 value = self.getSymbols(var) 526 value = self.getNumber(var) 528 value = self.getVariable(var) [all …]
|
/device/generic/goldfish-opengl/android-emu/android/base/files/ |
D | Stream.cpp | 20 void Stream::putByte(uint8_t value) { in putByte() argument 21 write(&value, 1U); in putByte() 25 uint8_t value[1] = { 0 }; in getByte() local 26 read(value, 1U); in getByte() 27 return value[0]; in getByte() 30 void Stream::putBe16(uint16_t value) { in putBe16() argument 31 uint8_t b[2] = { (uint8_t)(value >> 8), (uint8_t)value }; in putBe16() 41 void Stream::putBe32(uint32_t value) { in putBe32() argument 43 (uint8_t)(value >> 24), in putBe32() 44 (uint8_t)(value >> 16), in putBe32() [all …]
|
/device/linaro/bootloader/edk2/IntelFsp2Pkg/Tools/ |
D | PatchFv.py | 35 value = 0 38 value = value << 8 | bytearray[idx] 41 return value 82 def patchDataInFile (binfile, offset, value, len=1): argument 91 bytearray.append(value & 0xFF) 92 value = value >> 8 555 value = self.getGuidOff(var) 557 value = self.getSymbols(var) 561 value = self.getNumber(var) 563 value = self.getVariable(var) [all …]
|
/device/linaro/bootloader/edk2/StdLib/LibC/Math/ |
D | s_ldexp.c | 23 ldexp(double value, int exp) in ldexp() argument 25 if(!finite(value)||value==0.0) return value; in ldexp() 26 value = scalbn(value,exp); in ldexp() 27 if(!finite(value)||value==0.0) errno = ERANGE; in ldexp() 28 return value; in ldexp()
|
D | math_private.h | 45 double value; member 60 double value; member 75 ew_u.value = (d); \ 85 gh_u.value = (d); \ 94 gl_u.value = (d); \ 105 (d) = iw_u.value; \ 113 sh_u.value = (d); \ 115 (d) = sh_u.value; \ 123 sl_u.value = (d); \ 125 (d) = sl_u.value; \ [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | _abcoll.py | 200 return self._from_iterable(value for value in other if value in self) 206 for value in other: 207 if value in self: 224 return self._from_iterable(value for value in self 225 if value not in other) 232 return self._from_iterable(value for value in other 233 if value not in self) 295 def add(self, value): argument 300 def discard(self, value): argument 304 def remove(self, value): argument [all …]
|
D | traceback.py | 110 def print_exception(etype, value, tb, limit=None, file=None): argument 126 lines = format_exception_only(etype, value) 130 def format_exception(etype, value, tb, limit = None): argument 144 list = list + format_exception_only(etype, value) 147 def format_exception_only(etype, value): argument 173 return [_format_final_exc_line(etype, value)] 178 return [_format_final_exc_line(stype, value)] 183 msg, (filename, lineno, offset, badline) = value.args 198 value = msg 200 lines.append(_format_final_exc_line(stype, value)) [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | _abcoll.py | 194 return self._from_iterable(value for value in other if value in self) 197 for value in other: 198 if value in self: 213 return self._from_iterable(value for value in self 214 if value not in other) 264 def add(self, value): argument 269 def discard(self, value): argument 273 def remove(self, value): argument 275 if value not in self: 276 raise KeyError(value) [all …]
|
D | xmlrpclib.py | 306 def __init__(self, value = 0): argument 307 self.value = operator.truth(value) 310 out.write("<value><boolean>%d</boolean></value>\n" % self.value) 314 other = other.value 315 return cmp(self.value, other) 318 if self.value: 324 return self.value 327 return self.value 343 def boolean(value, _truefalse=(False, True)): argument 345 return _truefalse[operator.truth(value)] [all …]
|
D | traceback.py | 110 def print_exception(etype, value, tb, limit=None, file=None): argument 126 lines = format_exception_only(etype, value) 130 def format_exception(etype, value, tb, limit = None): argument 144 list = list + format_exception_only(etype, value) 147 def format_exception_only(etype, value): argument 173 return [_format_final_exc_line(etype, value)] 178 return [_format_final_exc_line(stype, value)] 183 msg, (filename, lineno, offset, badline) = value.args 197 value = msg 199 lines.append(_format_final_exc_line(stype, value)) [all …]
|
D | shelve.py | 119 value = self.cache[key] 122 value = Unpickler(f).load() 124 self.cache[key] = value 125 return value 127 def __setitem__(self, key, value): argument 129 self.cache[key] = value 132 p.dump(value) 189 (key, value) = self.dict.set_location(key) 190 f = StringIO(value) 194 (key, value) = self.dict.next() [all …]
|
/device/google/cuttlefish_common/common/vsoc/shm/ |
D | graphics.h | 50 static const uint32_t value = ((BYTES - 1) << PixelFormatConst::SubformatSize) | SUB_FORMAT; member 72 VSOC_PIXEL_FORMAT_UNINITIALIZED = PixelFormatBuilder<1,0>::value, 73 VSOC_PIXEL_FORMAT_BLOB = PixelFormatBuilder<1,1>::value, 75 VSOC_PIXEL_FORMAT_RGB_565 = PixelFormatBuilder<2,0>::value, 76 VSOC_PIXEL_FORMAT_YV12 = PixelFormatBuilder<2,1>::value, 77 VSOC_PIXEL_FORMAT_YCbCr_420_888 = PixelFormatBuilder<2,2>::value, 79 VSOC_PIXEL_FORMAT_RGB_888 = PixelFormatBuilder<3,0>::value, 81 VSOC_PIXEL_FORMAT_RGBA_8888 = PixelFormatBuilder<4,0>::value, 82 VSOC_PIXEL_FORMAT_RGBX_8888 = PixelFormatBuilder<4,1>::value, 83 VSOC_PIXEL_FORMAT_BGRA_8888 = PixelFormatBuilder<4,2>::value, [all …]
|
/device/google/contexthub/util/common/ |
D | JSONObject.h | 54 bool getInt32(int32_t *value) const; 55 bool getFloat(float *value) const; 56 bool getString(AString *value) const; 57 bool getBoolean(bool *value) const; 58 bool getObject(sp<JSONObject> *value) const; 59 bool getArray(sp<JSONArray> *value) const; 61 void setInt32(int32_t value); 62 void setFloat(float value); 63 void setString(const AString &value); 64 void setBoolean(bool value); [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/ |
D | patcomp.py | 38 type, value, start, end, line_text = quintuple 103 name = nodes[0].value 144 value = unicode(literals.evalString(node.value)) 145 return pytree.LeafPattern(_type_of_literal(value), value) 147 value = node.value 148 if value.isupper(): 149 if value not in TOKEN_MAP: 150 raise PatternSyntaxError("Invalid token: %r" % value) 153 return pytree.LeafPattern(TOKEN_MAP[value]) 155 if value == "any": [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | _testcapimodule.c | 464 long value; in test_long_and_overflow() local 473 value = PyLong_AsLongAndOverflow(num, &overflow); in test_long_and_overflow() 475 if (value == -1 && PyErr_Occurred()) in test_long_and_overflow() 477 if (value != -1) in test_long_and_overflow() 500 value = PyLong_AsLongAndOverflow(num, &overflow); in test_long_and_overflow() 502 if (value == -1 && PyErr_Occurred()) in test_long_and_overflow() 504 if (value != -1) in test_long_and_overflow() 517 value = PyLong_AsLongAndOverflow(num, &overflow); in test_long_and_overflow() 519 if (value == -1 && PyErr_Occurred()) in test_long_and_overflow() 521 if (value != -1) in test_long_and_overflow() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_grp.py | 10 def check_value(self, value): argument 13 self.assertEqual(len(value), 4) 14 self.assertEqual(value[0], value.gr_name) 15 self.assertIsInstance(value.gr_name, basestring) 16 self.assertEqual(value[1], value.gr_passwd) 17 self.assertIsInstance(value.gr_passwd, basestring) 18 self.assertEqual(value[2], value.gr_gid) 19 self.assertIsInstance(value.gr_gid, int) 20 self.assertEqual(value[3], value.gr_mem) 21 self.assertIsInstance(value.gr_mem, list)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/ |
D | encoder.py | 301 for value in lst: 306 if isinstance(value, basestring): 307 yield buf + _encoder(value) 308 elif value is None: 310 elif value is True: 312 elif value is False: 314 elif isinstance(value, (int, long)): 315 yield buf + str(value) 316 elif isinstance(value, float): 317 yield buf + _floatstr(value) [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/ |
D | encoder.py | 307 for value in lst: 312 if isinstance(value, basestring): 313 yield buf + _encoder(value) 314 elif value is None: 316 elif value is True: 318 elif value is False: 320 elif isinstance(value, (int, long)): 321 yield buf + str(value) 322 elif isinstance(value, float): 323 yield buf + _floatstr(value) [all …]
|