| /third_party/ulib/jemalloc/test/unit/ |
| A D | qr.c | 12 char id; member 22 entries[i].id = 'a' + i; in init_entries() 82 assert_c_eq(t->id, entries[(i+j) % NENTRIES].id, in test_entries_ring() 97 assert_c_eq(t->id, entries[(i+1) % NENTRIES].id, in test_entries_ring() 102 assert_c_eq(t->id, entries[(NENTRIES+i-1) % NENTRIES].id, in test_entries_ring() 132 assert_c_eq(t->id, entries[i+j].id, in TEST_BEGIN() 138 assert_c_eq(t->id, entries[NENTRIES - 1 - j].id, in TEST_BEGIN() 168 assert_c_eq(t->id, entries[(i+j+1) % NENTRIES].id, in TEST_BEGIN() 175 assert_c_eq(t->id, entries[(NENTRIES+i-1) % NENTRIES].id, in TEST_BEGIN() 180 assert_c_eq(t->id, entries[(i+1) % NENTRIES].id, in TEST_BEGIN() [all …]
|
| A D | ql.c | 11 char id; member 52 entries[i].id = 'a' + i; in init_entries() 63 assert_c_eq(ql_first(head)->id, entries[0].id, "Element id mismatch"); in test_entries_list() 64 assert_c_eq(ql_last(head, link)->id, entries[nentries-1].id, in test_entries_list() 69 assert_c_eq(t->id, entries[i].id, "Element id mismatch"); in test_entries_list() 75 assert_c_eq(t->id, entries[nentries-i-1].id, in test_entries_list() 82 assert_c_eq(t->id, entries[i+1].id, "Element id mismatch"); in test_entries_list() 90 assert_c_eq(t->id, entries[i-1].id, "Element id mismatch"); in test_entries_list()
|
| /third_party/ulib/musl/third_party/math/ |
| A D | atanf.c | 39 int id; in atanf() local 56 id = -1; in atanf() 61 id = 0; in atanf() 64 id = 1; in atanf() 69 id = 2; in atanf() 72 id = 3; in atanf() 83 if (id < 0) in atanf() 85 z = atanhi[id] - ((x * (s1 + s2) - atanlo[id]) - x); in atanf()
|
| A D | atan.c | 65 int id; in atan() local 82 id = -1; in atan() 87 id = 0; in atan() 90 id = 1; in atan() 95 id = 2; in atan() 98 id = 3; in atan() 109 if (id < 0) in atan() 111 z = atanhi[id] - (x * (s1 + s2) - atanlo[id] - x); in atan()
|
| A D | atanl.c | 114 int id; in atanl() local 133 id = -1; in atanl() 138 id = 0; in atanl() 141 id = 1; in atanl() 146 id = 2; in atanl() 149 id = 3; in atanl() 160 if (id < 0) in atanl() 162 z = atanhi[id] - ((x * (s1 + s2) - atanlo[id]) - x); in atanl()
|
| /third_party/ulib/musl/src/network/ |
| A D | res_mkquery.c | 8 int id, i, j; in __res_mkquery() local 37 id = (ts.tv_nsec + ts.tv_nsec / 65536UL) & 0xffff; in __res_mkquery() 38 q[0] = id / 256; in __res_mkquery() 39 q[1] = id; in __res_mkquery()
|
| /third_party/ulib/musl/src/ipc/ |
| A D | ftok.c | 4 key_t ftok(const char* path, int id) { in ftok() argument 9 return ((st.st_ino & 0xffff) | ((st.st_dev & 0xff) << 16) | ((id & 0xff) << 24)); in ftok()
|
| A D | semctl.c | 5 int semctl(int id, int num, int cmd, ...) { in semctl() argument
|
| A D | shmat.c | 6 void* shmat(int id, const void* addr, int flag) { in shmat() argument
|
| A D | shmctl.c | 5 int shmctl(int id, int cmd, struct shmid_ds* buf) { in shmctl() argument
|
| A D | semop.c | 5 int semop(int id, struct sembuf* buf, size_t n) { in semop() argument
|
| A D | semtimedop.c | 6 int semtimedop(int id, struct sembuf* buf, size_t n, const struct timespec* ts) { in semtimedop() argument
|
| /third_party/ulib/uboringssl/include/openssl/ |
| A D | thread.h | 143 OPENSSL_EXPORT void CRYPTO_THREADID_set_numeric(CRYPTO_THREADID *id, 147 OPENSSL_EXPORT void CRYPTO_THREADID_set_pointer(CRYPTO_THREADID *id, void *ptr); 150 OPENSSL_EXPORT void CRYPTO_THREADID_current(CRYPTO_THREADID *id);
|
| /third_party/ulib/musl/src/internal/ |
| A D | threads_impl.h | 137 pid_t id = zxr_thread_get_handle(&__pthread_self()->zxr_thread); in __thread_get_tid() local 138 if (id & PTHREAD_MUTEX_OWNED_LOCK_BIT) { in __thread_get_tid() 141 return id; in __thread_get_tid()
|
| /third_party/ulib/usbhost/include/usbhost/ |
| A D | usbhost.h | 108 char* usb_device_get_name_from_unique_id(int id); 129 int usb_device_get_string_ucs2(struct usb_device* device, int id, int timeout, void** ucs2_out, 141 char* usb_device_get_string(struct usb_device *device, int id, int timeout);
|
| /third_party/ulib/musl/src/process/ |
| A D | waitid.c | 4 int waitid(idtype_t type, id_t id, siginfo_t* info, int options) { in waitid() argument
|
| /third_party/ulib/usbhost/ |
| A D | usbhost.c | 377 char* usb_device_get_name_from_unique_id(int id) in usb_device_get_name_from_unique_id() argument 379 int bus = id / 1000; in usb_device_get_name_from_unique_id() 380 int dev = id % 1000; in usb_device_get_name_from_unique_id() 418 int usb_device_get_string_ucs2(struct usb_device* device, int id, int timeout, void** ucs2_out, in usb_device_get_string_ucs2() argument 424 if (id == 0) return -1; in usb_device_get_string_ucs2() 438 (USB_DT_STRING << 8) | id, languages[i], response, sizeof(response), timeout); in usb_device_get_string_ucs2() 461 char* usb_device_get_string(struct usb_device* device, int id, int timeout) { in usb_device_get_string() argument 465 if (usb_device_get_string_ucs2(device, id, timeout, (void**)&ascii_string, &raw_string_len) < 0) in usb_device_get_string()
|
| /third_party/lib/cortex-strings/ |
| A D | README.fuchsia | 11 This works around https://bugs.llvm.org//show_bug.cgi?id=34488
|
| /third_party/dev/ethernet/e1000/ |
| A D | e1000_phy.c | 236 phy->id = (u32)(phy_id << 16); in e1000_get_phy_id() 245 if (phy->id != 0 && phy->id != PHY_REVISION_MASK) in e1000_get_phy_id() 1297 if (phy->id != M88E1112_E_PHY_ID) { in e1000_copper_link_setup_m88_gen2() 1319 if (phy->id == M88E1543_E_PHY_ID) { in e1000_copper_link_setup_m88_gen2() 1862 switch (hw->phy.id) { in e1000_phy_force_speed_duplex_m88() 1904 if (hw->phy.id == I347AT4_E_PHY_ID || in e1000_phy_force_speed_duplex_m88() 1905 hw->phy.id == M88E1340M_E_PHY_ID || in e1000_phy_force_speed_duplex_m88() 1906 hw->phy.id == M88E1112_E_PHY_ID) in e1000_phy_force_speed_duplex_m88() 1908 if (hw->phy.id == I210_I_PHY_ID) in e1000_phy_force_speed_duplex_m88() 2443 switch (hw->phy.id) { in e1000_get_cable_length_m88_gen2() [all …]
|
| A D | e1000_82575.c | 229 switch (phy->id) { in e1000_init_phy_params_82575() 239 if (phy->id == I347AT4_E_PHY_ID || in e1000_init_phy_params_82575() 240 phy->id == M88E1112_E_PHY_ID || in e1000_init_phy_params_82575() 241 phy->id == M88E1340M_E_PHY_ID) in e1000_init_phy_params_82575() 245 phy->id == M88E1512_E_PHY_ID) in e1000_init_phy_params_82575() 252 if (phy->id == M88E1112_E_PHY_ID) { in e1000_init_phy_params_82575() 274 if (phy->id == M88E1512_E_PHY_ID) { in e1000_init_phy_params_82575() 786 if (phy->id == M88E1512_E_PHY_ID) in e1000_phy_hw_reset_sgmii_82575() 1510 switch (hw->phy.id) { in e1000_setup_copper_link_82575() 2755 if (phy->id != M88E1512_E_PHY_ID) in e1000_initialize_M88E1512_phy() [all …]
|
| A D | e1000_82571.c | 175 if (phy->id != IGP01E1000_I_PHY_ID) in e1000_init_phy_params_82571() 179 if (phy->id != M88E1111_I_PHY_ID) in e1000_init_phy_params_82571() 184 if (phy->id != BME1000_E_PHY_ID_R2) in e1000_init_phy_params_82571() 193 DEBUGOUT1("PHY ID unknown: type = 0x%08x\n", phy->id); in e1000_init_phy_params_82571() 477 phy->id = IGP01E1000_I_PHY_ID; in e1000_get_phy_id_82571() 488 phy->id = (u32)(phy_id << 16); in e1000_get_phy_id_82571() 494 phy->id |= (u32)(phy_id); in e1000_get_phy_id_82571()
|
| /third_party/ulib/musl/include/ |
| A D | resolv.h | 32 unsigned short id; member
|
| /third_party/ulib/musl/include/netinet/ |
| A D | ip.h | 34 uint16_t id; member
|
| A D | ip_icmp.h | 17 uint16_t id; member
|
| /third_party/uapp/dash/src/ |
| A D | process.c | 99 … {.action = FDIO_SPAWN_ACTION_ADD_HANDLE, .h = {.id = PA_HND(PA_USER0, 0), .handle = ast_vmo}}, in process_subshell()
|