| /OK3568_Linux_fs/u-boot/arch/powerpc/cpu/mpc8xx/ |
| H A D | Kconfig | 44 hex "SIUMCR register" 49 hex "SYPCR register" 54 hex "TBSCR register" 59 hex "PISCR register" 67 hex "PLPRCR register" 73 hex "SCCR register" 78 hex "MASK for setting SCCR register" 81 hex "DER register" 88 hex "Preliminary value for BR0" 91 hex "Preliminary value for OR0" [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/power/regulator/ |
| H A D | max77686.c | 74 int hex = 0; in max77686_buck_volt2hex() local 82 hex = (uV - MAX77686_BUCK_UV_LMIN) / MAX77686_BUCK_UV_LSTEP; in max77686_buck_volt2hex() 93 hex = (uV - MAX77686_BUCK_UV_HMIN) / MAX77686_BUCK_UV_HSTEP; in max77686_buck_volt2hex() 98 if (hex >= 0 && hex <= hex_max) in max77686_buck_volt2hex() 99 return hex; in max77686_buck_volt2hex() 105 static int max77686_buck_hex2volt(int buck, int hex) in max77686_buck_hex2volt() argument 110 if (hex < 0) in max77686_buck_hex2volt() 118 if (hex > hex_max) in max77686_buck_hex2volt() 122 uV = hex * MAX77686_BUCK_UV_LSTEP + MAX77686_BUCK_UV_LMIN; in max77686_buck_hex2volt() 126 if (hex > hex_max) in max77686_buck_hex2volt() [all …]
|
| H A D | lp873x_regulator.c | 75 static int lp873x_buck_hex2volt(int hex) in lp873x_buck_hex2volt() argument 77 if (hex > LP873X_BUCK_VOLT_MAX_HEX) in lp873x_buck_hex2volt() 79 else if (hex > 0x9D) in lp873x_buck_hex2volt() 80 return 1400000 + (hex - 0x9D) * 20000; in lp873x_buck_hex2volt() 81 else if (hex > 0x17) in lp873x_buck_hex2volt() 82 return 730000 + (hex - 0x17) * 5000; in lp873x_buck_hex2volt() 83 else if (hex >= 0x14) in lp873x_buck_hex2volt() 84 return 700000 + (hex - 0x14) * 10000; in lp873x_buck_hex2volt() 91 unsigned int hex, adr; in lp873x_buck_val() local 116 hex = lp873x_buck_volt2hex(*uV); in lp873x_buck_val() [all …]
|
| H A D | palmas_regulator.c | 103 static int palmas_smps_hex2volt(int hex, bool range) in palmas_smps_hex2volt() argument 107 if (hex > PALMAS_SMPS_VOLT_MAX_HEX) in palmas_smps_hex2volt() 110 if (hex < 0x7) in palmas_smps_hex2volt() 113 uV = 500000 + (hex - 0x6) * 10000; in palmas_smps_hex2volt() 123 unsigned int hex, adr; in palmas_smps_val() local 154 hex = palmas_smps_volt2hex(*uV); in palmas_smps_val() 155 if (hex < 0) in palmas_smps_val() 156 return hex; in palmas_smps_val() 159 ret |= hex; in palmas_smps_val() 246 static int palmas_ldo_hex2volt(int hex) in palmas_ldo_hex2volt() argument [all …]
|
| H A D | lp87565_regulator.c | 89 unsigned int hex, adr; in lp87565_buck_val() local 114 hex = lp87565_buck_volt2val(*uV); in lp87565_buck_val() 115 if (hex < 0) in lp87565_buck_val() 116 return hex; in lp87565_buck_val() 119 ret = hex; in lp87565_buck_val()
|
| /OK3568_Linux_fs/u-boot/drivers/power/pmic/ |
| H A D | pmic_max77686.c | 23 unsigned int hex = 0; in max77686_ldo_volt2hex() local 32 hex = (uV - 800000) / 25000; in max77686_ldo_volt2hex() 35 hex = (uV - 800000) / 50000; in max77686_ldo_volt2hex() 38 if (hex >= 0 && hex <= MAX77686_LDO_VOLT_MAX_HEX) in max77686_ldo_volt2hex() 39 return hex; in max77686_ldo_volt2hex() 47 int hex = 0; in max77686_buck_volt2hex() local 54 hex = (uV - 750000) / 50000; in max77686_buck_volt2hex() 56 if (hex >= 0 && hex <= MAX77686_BUCK_VOLT_MAX_HEX) in max77686_buck_volt2hex() 57 return hex; in max77686_buck_volt2hex() 66 unsigned int val, ret, hex, adr; in max77686_set_ldo_voltage() local [all …]
|
| /OK3568_Linux_fs/kernel/tools/lib/api/ |
| H A D | io.h | 66 static inline int io__get_hex(struct io *io, __u64 *hex) in io__get_hex() argument 70 *hex = 0; in io__get_hex() 77 *hex = (*hex << 4) | (ch - '0'); in io__get_hex() 79 *hex = (*hex << 4) | (ch - 'a' + 10); in io__get_hex() 81 *hex = (*hex << 4) | (ch - 'A' + 10); in io__get_hex()
|
| /OK3568_Linux_fs/u-boot/arch/x86/cpu/quark/ |
| H A D | Kconfig | 45 hex "Remote Management Unit (RMU) binary location" 65 hex 70 hex 76 hex 80 hex 86 hex 93 hex 100 hex 106 hex 112 hex [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/vk-gl-cts/files/ |
| H A D | 0001-Workaround-for-GCC-11-uninit-variable-warnings-946.patch | 32 uint32_t hex = sign | exponent | mantissa; 33 - float* hex_float = reinterpret_cast<float*>(&hex); 38 + memcpy(&hex_float, &hex, sizeof(float)); 46 uint32_t hex = exponent | mantissa; 47 - float* hex_float = reinterpret_cast<float*>(&hex); 52 + memcpy(&hex_float, &hex, sizeof(float)); 60 uint32_t hex = exponent | mantissa; 61 - float* hex_float = reinterpret_cast<float*>(&hex); 66 + memcpy(&hex_float, &hex, sizeof(float));
|
| /OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/qt5/qtwayland/ |
| H A D | 0001-Fix-vulkan-buffer-formats-for-GLES2.patch | 8 if (extraDebug) qDebug() << "format" << Qt::hex << m_internalFormat << GL_RGBA8; 23 if (extraDebug) qDebug() << "bound texture" << Qt::hex << glGetError(); 25 if (extraDebug) qDebug() << "glTexStorageMem2DEXT" << Qt::hex << glGetError(); 26 - if (extraDebug) qDebug() << "format" << Qt::hex << m_internalFormat << GL_RGBA8; 27 + if (extraDebug) qDebug() << "format" << Qt::hex << m_internalFormat << GL_RGBA; 53 if (extraDebug) qDebug() << "bound texture" << texId << Qt::hex << glGetError(); 55 if (extraDebug) qDebug() << "glTexStorageMem2DEXT" << Qt::hex << glGetError(); 56 - if (extraDebug) qDebug() << "format" << Qt::hex << m_glInternalFormat << GL_RGBA8; 57 + if (extraDebug) qDebug() << "format" << Qt::hex << m_glInternalFormat << GL_RGBA;
|
| /OK3568_Linux_fs/kernel/tools/perf/tests/ |
| H A D | api-io.c | 139 __u64 hex; in do_test_get_hex() local 144 ch = io__get_hex(&io, &hex); in do_test_get_hex() 145 EXPECT_EQUAL64(hex, val1); in do_test_get_hex() 148 ch = io__get_hex(&io, &hex); in do_test_get_hex() 149 EXPECT_EQUAL64(hex, val2); in do_test_get_hex() 152 ch = io__get_hex(&io, &hex); in do_test_get_hex() 153 EXPECT_EQUAL64(hex, val3); in do_test_get_hex()
|
| /OK3568_Linux_fs/kernel/tools/firmware/ |
| H A D | ihex2fw.c | 46 static uint8_t hex(const uint8_t *data, uint8_t *crc) in hex() function 157 len = hex(data + i, &crc); i += 2; in process_ihex() 160 len += hex(data + i, &crc); i += 2; in process_ihex() 178 record->addr = hex(data + i, &crc) << 8; i += 2; in process_ihex() 179 record->addr |= hex(data + i, &crc); i += 2; in process_ihex() 180 type = hex(data + i, &crc); i += 2; in process_ihex() 183 record->data[j] = hex(data + i, &crc); in process_ihex() 186 crcbyte = hex(data + i, &crc); i += 2; in process_ihex()
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/rockchip/cif/ |
| H A D | Kconfig | 48 hex "rkcif monitor mode" 53 hex "the frame id to start monitor" 58 hex "frame num of monitoring cycle" 63 hex "timeout for keep monitoring after finding out error, unit(ms)" 68 hex "error reference val for resetting"
|
| /OK3568_Linux_fs/kernel/Documentation/misc-devices/ |
| H A D | spear-pcie-gadget.rst | 44 vendor_id returns programmed vendor id (hex) 45 device_id returns programmed device id(hex) 46 bar0_size: returns size of bar0 in hex. 47 bar0_address returns address of bar0 mapped area in hex. 63 vendor_id write vendor id(hex) to be programmed. 64 device_id write device id(hex) to be programmed. 65 bar0_size write size of bar0 in hex. default bar0 size is 1000 (hex) 67 bar0_address write address of bar0 mapped area in hex. (default mapping of
|
| /OK3568_Linux_fs/kernel/arch/m68k/ifpsp060/ |
| H A D | README | 32 fpsp.sa Full FP Kernel Module - hex image 36 pfpsp.sa Partial FP Kernel Module - hex image 39 fplsp.sa FP Library Module - hex image 43 isp.sa Integer Unimplemented Kernel Module - hex image 47 ilsp.sa Integer Unimplemented Library Module - hex image 58 was connected properly; hex image 62 connected properly; hex image
|
| /OK3568_Linux_fs/kernel/arch/arm/ |
| H A D | Kconfig-nommu | 14 hex '(S)DRAM Base Address' if SET_MEM_PARAM 18 hex '(S)DRAM SIZE' if SET_MEM_PARAM 22 hex 'FLASH Base Address' if SET_MEM_PARAM 27 hex 'FLASH Size' if SET_MEM_PARAM 32 hex 'Hard wire the processor ID'
|
| /OK3568_Linux_fs/u-boot/arch/x86/cpu/tangier/ |
| H A D | Kconfig | 22 hex 26 hex 33 hex
|
| /OK3568_Linux_fs/u-boot/arch/x86/cpu/qemu/ |
| H A D | Kconfig | 20 hex 24 hex 28 hex
|
| /OK3568_Linux_fs/kernel/drivers/bus/ |
| H A D | moxtet.c | 468 u8 hex[sizeof(bin) * 2 + 1]; in input_read() local 476 bin2hex(hex, bin, n); in input_read() 478 hex[2*n] = '\n'; in input_read() 480 return simple_read_from_buffer(buf, len, ppos, hex, 2*n + 1); in input_read() 494 u8 hex[TURRIS_MOX_MAX_MODULES * 2 + 1]; in output_read() local 495 u8 *p = hex; in output_read() 507 return simple_read_from_buffer(buf, len, ppos, hex, p - hex); in output_read() 515 u8 hex[sizeof(bin) * 2 + 1]; in output_write() local 523 res = simple_write_to_buffer(hex, sizeof(hex), &dummy, buf, len); in output_write() 527 if (len % 2 == 1 && hex[len - 1] != '\n') in output_write() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/testing/ |
| H A D | configfs-usb-gadget-rndis | 16 class USB interface class, default is 02 (hex) 17 subclass USB interface subclass, default is 06 (hex) 18 protocol USB interface protocol, default is 00 (hex)
|
| /OK3568_Linux_fs/u-boot/common/ |
| H A D | kgdb.c | 118 hex(unsigned char ch) in hex() function 176 hexValue = hex(*tmp_hex--); in hex2mem() 180 hexValue = hex(*tmp_hex--); in hex2mem() 209 hexValue = hex(**ptr); in hexToInt() 265 xmitcsum = hex(getDebugChar() & 0x7f) << 4; in getpacket() 266 xmitcsum |= hex(getDebugChar() & 0x7f); in getpacket()
|
| /OK3568_Linux_fs/kernel/lib/ |
| H A D | seq_buf.c | 225 unsigned char hex[HEX_CHARS]; local 241 hex[j++] = hex_asc_hi(data[i]); 242 hex[j++] = hex_asc_lo(data[i]); 248 hex[j++] = ' '; 250 seq_buf_putmem(s, hex, j);
|
| /OK3568_Linux_fs/u-boot/arch/x86/include/asm/acpi/ |
| H A D | debug.asl | 65 /* DBGN - Send a single hex nibble */ 77 /* DBGB - Send a hex byte */ 85 /* DBGW - Send a hex word */ 93 /* DBGD - Send a hex dword */
|
| /OK3568_Linux_fs/u-boot/arch/x86/ |
| H A D | Kconfig | 128 hex 132 hex 141 hex 149 hex 197 hex 202 hex 207 hex 212 hex 294 # Map the config names to a hex value (bytes). 296 hex [all …]
|
| /OK3568_Linux_fs/u-boot/arch/x86/lib/efi/ |
| H A D | Kconfig | 4 hex 8 hex
|