Home
last modified time | relevance | path

Searched refs:ord (Results 1 – 9 of 9) sorted by relevance

/hal_espressif-3.6.0/tools/ldgen/test/
Dtest_entity.py183 entity_b = Entity(chr(ord(Entity.ALL[0]) - 1))
188 entity_b = Entity('libfreertos.a', chr(ord(Entity.ALL[0]) - 1))
193 entity_b = Entity('libfreertos.a', 'croutine', chr(ord(Entity.ALL[0]) - 1))
/hal_espressif-3.6.0/tools/unit-test-app/tools/
DCreateSectionTable.py135 value += ord(tmp[i]) << (i * 8)
137 value += ord(tmp[i]) << ((size - i - 1) * 8)
/hal_espressif-3.6.0/tools/esp_prov/security/
Dsecurity1.py50 ret.append(([0, ord(a[i])][i < len(a)]) ^ ([0, ord(b[i])][i < len(b)]))
/hal_espressif-3.6.0/tools/idf_monitor_base/
Dgdbhelper.py85 chsum = sum(ord(bytes([p])) for p in m.group(1)) & 0xFF
/hal_espressif-3.6.0/components/fatfs/src/
Dff.c1948 BYTE ord, /* LFN order (1-20) */ argument
1961 i = (ord - 1) * 13; /* Get offset in the LFN working buffer */
1968 if (wc == 0xFFFF || !lfn[i]) ord |= LLEF; /* Last LFN part is the start of LFN sequence */
1969 dir[LDIR_Ord] = ord; /* Set the LFN order */
2343 BYTE ord = 0xFF, sum = 0xFF; local
2373 ord = 0xFF;
2378 b &= (BYTE)~LLEF; ord = b;
2382ord = (b == ord && sum == dp->dir[LDIR_Chksum] && pick_lfn(fs->lfnbuf, dp->dir)) ? ord - 1 : 0xFF;
2384 if (ord != 0 || sum != sum_sfn(dp->dir)) { /* Is there a valid LFN? */
2420 BYTE a, ord, sum; local
[all …]
/hal_espressif-3.6.0/tools/esp_prov/transport/
Dble_cli.py324 … path.WriteValue([ord(c) for c in data], {}, dbus_interface='org.bluez.GattCharacteristic1')
/hal_espressif-3.6.0/components/esptool_py/esptool/esptool/
Dbin_image.py66 magic = ord(f.read(1))
269 return ord(f.read(1))
/hal_espressif-3.6.0/tools/ble/
Dlib_ble_client.py420 if not (ord(new_value) == int(updated_value[0])):
/hal_espressif-3.6.0/examples/system/efuse/
Dexample_test.py17 data = ord(f.read(1))