/third_party/lwip/src/netif/ppp/ |
D | pppoe.c | 145 static err_t pppoe_xmit(struct pppoe_softc *sc, struct pbuf *pb); 177 struct pppoe_softc *sc; in pppoe_create() local 184 sc = (struct pppoe_softc *)LWIP_MEMPOOL_ALLOC(PPPOE_IF); in pppoe_create() 185 if (sc == NULL) { in pppoe_create() 189 ppp = ppp_new(pppif, &pppoe_callbacks, sc, link_status_cb, ctx_cb); in pppoe_create() 191 LWIP_MEMPOOL_FREE(PPPOE_IF, sc); in pppoe_create() 195 memset(sc, 0, sizeof(struct pppoe_softc)); in pppoe_create() 196 sc->pcb = ppp; in pppoe_create() 197 sc->sc_ethif = ethif; in pppoe_create() 199 sc->sc_service_name = service_name; in pppoe_create() [all …]
|
/third_party/FreeBSD/sys/dev/usb/serial/ |
D | usb_serial.c | 73 extern int ucom_modem(struct ucom_softc *sc, int sigon, int sigoff); 122 static void ucom_close(struct ucom_softc *sc); 171 ucom_attach(struct ucom_super_softc *ssc, struct ucom_softc *sc, in ucom_attach() argument 180 if ((sc == NULL) || in ucom_attach() 213 sc[subunit].sc_subunit = subunit; in ucom_attach() 214 sc[subunit].sc_super = ssc; in ucom_attach() 215 sc[subunit].sc_mtx = umtx; in ucom_attach() 216 sc[subunit].sc_parent = parent; in ucom_attach() 217 sc[subunit].sc_callback = callback; in ucom_attach() 219 error = ucom_attach_tty(ssc, &sc[subunit]); in ucom_attach() [all …]
|
/third_party/vk-gl-cts/android/cts/main/vksc-main/ |
D | sc.txt | 1 dEQP-VKSC.sc.pipeline_identifier.graphics.missing_pid.exact_match.single 2 dEQP-VKSC.sc.pipeline_identifier.graphics.missing_pid.exact_match.multiple 3 dEQP-VKSC.sc.pipeline_identifier.graphics.nonexisting_pid.exact_match.single 4 dEQP-VKSC.sc.pipeline_identifier.graphics.nonexisting_pid.exact_match.multiple 5 dEQP-VKSC.sc.pipeline_identifier.graphics.match_control.exact_match.single 6 dEQP-VKSC.sc.pipeline_identifier.graphics.match_control.exact_match.multiple 7 dEQP-VKSC.sc.pipeline_identifier.compute.missing_pid.exact_match.single 8 dEQP-VKSC.sc.pipeline_identifier.compute.missing_pid.exact_match.multiple 9 dEQP-VKSC.sc.pipeline_identifier.compute.nonexisting_pid.exact_match.single 10 dEQP-VKSC.sc.pipeline_identifier.compute.nonexisting_pid.exact_match.multiple [all …]
|
/third_party/vk-gl-cts/external/vulkancts/mustpass/main/vksc-default/ |
D | sc.txt | 1 dEQP-VKSC.sc.pipeline_identifier.graphics.missing_pid.exact_match.single 2 dEQP-VKSC.sc.pipeline_identifier.graphics.missing_pid.exact_match.multiple 3 dEQP-VKSC.sc.pipeline_identifier.graphics.nonexisting_pid.exact_match.single 4 dEQP-VKSC.sc.pipeline_identifier.graphics.nonexisting_pid.exact_match.multiple 5 dEQP-VKSC.sc.pipeline_identifier.graphics.match_control.exact_match.single 6 dEQP-VKSC.sc.pipeline_identifier.graphics.match_control.exact_match.multiple 7 dEQP-VKSC.sc.pipeline_identifier.compute.missing_pid.exact_match.single 8 dEQP-VKSC.sc.pipeline_identifier.compute.missing_pid.exact_match.multiple 9 dEQP-VKSC.sc.pipeline_identifier.compute.nonexisting_pid.exact_match.single 10 dEQP-VKSC.sc.pipeline_identifier.compute.nonexisting_pid.exact_match.multiple [all …]
|
/third_party/vk-gl-cts/android/cts/main/vksc-master/ |
D | sc.txt | 1 dEQP-VKSC.sc.api.forbidden_core_commands 2 dEQP-VKSC.sc.api.forbidden_core_extensions 3 dEQP-VKSC.sc.api.forbidden_promoted_commands 4 dEQP-VKSC.sc.api.forbidden_features 5 dEQP-VKSC.sc.api.forbidden_properties 6 dEQP-VKSC.sc.api.allowed_extensions 7 dEQP-VKSC.sc.device_object_reservation.basic.create_device 8 dEQP-VKSC.sc.device_object_reservation.basic.multiple_device_object_reservation 9 dEQP-VKSC.sc.device_object_reservation.limits.max_values.descriptor_set_layout_binding_limit 10 dEQP-VKSC.sc.device_object_reservation.limits.max_values.max_imageview_miplevels [all …]
|
/third_party/FreeBSD/sys/dev/usb/storage/ |
D | umass.c | 120 #define DPRINTF_UMASS(sc, m, fmt, ...) \ argument 124 (sc) ? (const char *)(sc)->sc_name : \ 318 typedef void (umass_callback_t)(struct umass_softc *sc, union ccb *ccb, 326 typedef uint8_t (umass_transform_t)(struct umass_softc *sc, uint8_t *cmd_ptr, 459 struct umass_softc *sc; member 468 static void umass_dev_delete(struct umass_softc *sc, unsigned int dev_unit); 534 static int32_t umass_attach_dev(struct umass_softc *sc, unsigned int dev_unit); 535 static void umass_detach_dev_sub(struct umass_softc *sc, int dev_unit, int flag); 913 struct umass_softc *sc = in umass_attach() local 927 sc->sc_dev = dev; in umass_attach() [all …]
|
/third_party/FreeBSD/sys/dev/usb/net/ |
D | if_axe.c | 137 static int axe_miibus_writereg(struct axe_softc *sc, int reg, int val); 138 static uint16_t axe_miibus_readreg(struct axe_softc *sc, int reg); 220 axe_cmd(struct axe_softc *sc, int cmd, int index, int val, void *buf) in axe_cmd() argument 225 AXE_LOCK_ASSERT(sc, MA_OWNED); in axe_cmd() 235 err = uether_do_request(&sc->sc_ue, &req, buf, 10000); in axe_cmd() 242 axe_miibus_readreg(struct axe_softc *sc, int reg) in axe_miibus_readreg() argument 246 axe_cmd(sc, AXE_CMD_MII_OPMODE_SW, 0, 0, NULL); in axe_miibus_readreg() 247 axe_cmd(sc, AXE_CMD_MII_READ_REG, reg, 0x10, &val); in axe_miibus_readreg() 248 axe_cmd(sc, AXE_CMD_MII_OPMODE_HW, 0, 0, NULL); in axe_miibus_readreg() 251 if (AXE_IS_772(sc) && reg == MII_BMSR) { in axe_miibus_readreg() [all …]
|
D | if_cdce.c | 255 cdce_ncm_init(struct cdce_softc *sc) in cdce_ncm_init() argument 265 ufd = usbd_find_descriptor(sc->sc_ue.ue_udev, NULL, in cdce_ncm_init() 266 sc->sc_ifaces_index[1], UDESC_CS_INTERFACE, 0xFF, in cdce_ncm_init() 280 req.wIndex[0] = sc->sc_ifaces_index[1]; in cdce_ncm_init() 284 err = usbd_do_request_flags(sc->sc_ue.ue_udev, NULL, &req, in cdce_ncm_init() 293 if (usbd_get_mode(sc->sc_ue.ue_udev) == USB_MODE_HOST) { in cdce_ncm_init() 294 sc->sc_ncm.rx_max = UGETDW(temp.dwNtbInMaxSize); in cdce_ncm_init() 295 sc->sc_ncm.tx_max = UGETDW(temp.dwNtbOutMaxSize); in cdce_ncm_init() 296 sc->sc_ncm.tx_remainder = UGETW(temp.wNdpOutPayloadRemainder); in cdce_ncm_init() 297 sc->sc_ncm.tx_modulus = UGETW(temp.wNdpOutDivisor); in cdce_ncm_init() [all …]
|
D | if_axge.c | 45 static void axge_miibus_statchg(struct axge_softc *sc, uint8_t link_status); 148 axge_write_mem(struct axge_softc *sc, uint8_t cmd, uint16_t index, in axge_write_mem() argument 159 if (uether_do_request(&sc->sc_ue, &req, buf, 1000)) { in axge_write_mem() 165 axge_write_cmd_1(struct axge_softc *sc, uint8_t cmd, uint16_t reg, uint8_t val) in axge_write_cmd_1() argument 167 axge_write_mem(sc, cmd, 1, reg, &val, 1); in axge_write_cmd_1() 171 axge_write_cmd_2(struct axge_softc *sc, uint8_t cmd, uint16_t index, in axge_write_cmd_2() argument 177 axge_write_mem(sc, cmd, index, reg, &temp, 2); in axge_write_cmd_2() 182 axge_read_mem(struct axge_softc *sc, uint8_t cmd, uint16_t index, in axge_read_mem() argument 187 AXGE_LOCK_ASSERT(sc, MA_OWNED); in axge_read_mem() 195 return (uether_do_request(&sc->sc_ue, &req, buf, 1000)); in axge_read_mem() [all …]
|
/third_party/FreeBSD/sys/dev/usb/input/ |
D | uhid.c | 139 struct uhid_softc *sc = usbd_xfer_softc(xfer); in uhid_intr_write_callback() local 148 if (usb_fifo_get_data(sc->sc_fifo.fp[USB_FIFO_TX], pc, in uhid_intr_write_callback() 195 struct uhid_softc *sc = usbd_xfer_softc(xfer); in uhid_intr_read_callback() local 206 if (sc->input_dev && sc->input_dev->devType == INDEV_TYPE_MOUSE) { in uhid_intr_read_callback() 207 mouse_report_events(sc->input_dev, pc->buffer, actlen); in uhid_intr_read_callback() 211 usbd_xfer_set_frame_len(xfer, 0, sc->sc_isize); in uhid_intr_read_callback() 218 usbd_xfer_set_frame_len(xfer, 0, sc->sc_isize); in uhid_intr_read_callback() 252 struct uhid_softc *sc = usbd_xfer_softc(xfer); in uhid_write_callback() local 255 uint32_t size = sc->sc_osize; in uhid_write_callback() 263 if (sc->sc_oid) { in uhid_write_callback() [all …]
|
/third_party/FreeBSD/sys/dev/usb/controller/ |
D | ehci.c | 60 static void ehci_dump_regs(ehci_softc_t *sc); 61 static void ehci_dump_sqh(ehci_softc_t *sc, ehci_qh_t *sqh); 89 static void ehci_root_intr(ehci_softc_t *sc); 92 ehci_softc_t *sc; member 111 ehci_softc_t *sc = EHCI_BUS2SC(bus); in ehci_iterate_hw_softc() local 114 cb(bus, &sc->sc_hw.pframes_pc, &sc->sc_hw.pframes_pg, in ehci_iterate_hw_softc() 117 cb(bus, &sc->sc_hw.terminate_pc, &sc->sc_hw.terminate_pg, in ehci_iterate_hw_softc() 120 cb(bus, &sc->sc_hw.async_start_pc, &sc->sc_hw.async_start_pg, in ehci_iterate_hw_softc() 124 cb(bus, sc->sc_hw.intr_start_pc + i, in ehci_iterate_hw_softc() 125 sc->sc_hw.intr_start_pg + i, in ehci_iterate_hw_softc() [all …]
|
D | ehci_pci.c | 58 hiehci_post_reset(struct ehci_softc *sc) in hiehci_post_reset() argument 63 usb_mode = EOREAD4(sc, EHCI_USBMODE_NOLPM); in hiehci_post_reset() 66 EOWRITE4(sc, EHCI_USBMODE_NOLPM, usb_mode); in hiehci_post_reset() 92 ehci_softc_t *sc = device_get_softc(self); in ehci_pci_attach() local 96 sc->sc_bus.parent = self; in ehci_pci_attach() 97 sc->sc_bus.devices = sc->sc_devices; in ehci_pci_attach() 98 sc->sc_bus.devices_max = EHCI_MAX_DEVICES; in ehci_pci_attach() 99 sc->sc_bus.dma_bits = 32; in ehci_pci_attach() 100 sc->sc_bus.dma_parent_tag[0].dma_bits = 32; in ehci_pci_attach() 103 if (usb_bus_mem_alloc_all(&sc->sc_bus, in ehci_pci_attach() [all …]
|
D | xhci.c | 79 struct xhci_softc *sc; member 117 static void xhci_ctx_set_le32(struct xhci_softc *sc, volatile uint32_t *ptr, uint32_t val); 118 static uint32_t xhci_ctx_get_le32(struct xhci_softc *sc, volatile uint32_t *ptr); 119 static void xhci_ctx_set_le64(struct xhci_softc *sc, volatile uint64_t *ptr, uint64_t val); 121 static uint64_t xhci_ctx_get_le64(struct xhci_softc *sc, volatile uint64_t *ptr); 137 xhci_dump_endpoint(struct xhci_softc *sc, struct xhci_endp_ctx *pep) in xhci_dump_endpoint() argument 140 DPRINTFN(5, "dwEpCtx0=0x%08x\n", xhci_ctx_get_le32(sc, &pep->dwEpCtx0)); in xhci_dump_endpoint() 141 DPRINTFN(5, "dwEpCtx1=0x%08x\n", xhci_ctx_get_le32(sc, &pep->dwEpCtx1)); in xhci_dump_endpoint() 142 DPRINTFN(5, "qwEpCtx2=0x%016llx\n", (long long)xhci_ctx_get_le64(sc, &pep->qwEpCtx2)); in xhci_dump_endpoint() 143 DPRINTFN(5, "dwEpCtx4=0x%08x\n", xhci_ctx_get_le32(sc, &pep->dwEpCtx4)); in xhci_dump_endpoint() [all …]
|
D | xhci_pci.c | 89 struct xhci_softc *sc = device_get_softc(self);; in xhci_pci_attach() local 101 sc->sc_io_res = ioremap(res->start, res->count); in xhci_pci_attach() 102 if (!sc->sc_io_res) { in xhci_pci_attach() 105 sc->sc_io_tag = (void *)sc->sc_io_res; in xhci_pci_attach() 106 sc->sc_io_hdl = (uintptr_t)sc->sc_io_res; in xhci_pci_attach() 107 sc->sc_io_size = res->count; in xhci_pci_attach() 115 sc->sc_irq_res = res; in xhci_pci_attach() 116 err = bus_setup_intr(res->start, 0, (driver_intr_t *)xhci_interrupt, sc); in xhci_pci_attach() 123 if (xhci_init(sc, self, usedma32)) { in xhci_pci_attach() 127 usb_callout_init_mtx(&sc->sc_callout, &sc->sc_bus.bus_mtx, 0); in xhci_pci_attach() [all …]
|
D | ehci.h | 362 void (*sc_vendor_post_reset)(struct ehci_softc *sc); 363 uint16_t (*sc_vendor_get_port_speed)(struct ehci_softc *sc, 368 #define EREAD1(sc, a) bus_space_read_1((sc)->sc_io_tag, (sc)->sc_io_hdl, (a)) argument 369 #define EREAD2(sc, a) bus_space_read_2((sc)->sc_io_tag, (sc)->sc_io_hdl, (a)) argument 370 #define EREAD4(sc, a) bus_space_read_4((sc)->sc_io_tag, (sc)->sc_io_hdl, (a)) argument 371 #define EWRITE1(sc, a, x) \ argument 372 bus_space_write_1((sc)->sc_io_tag, (sc)->sc_io_hdl, (a), (x)) 373 #define EWRITE2(sc, a, x) \ argument 374 bus_space_write_2((sc)->sc_io_tag, (sc)->sc_io_hdl, (a), (x)) 375 #define EWRITE4(sc, a, x) \ argument [all …]
|
/third_party/libuv/test/ |
D | test-signal.c | 157 struct signal_ctx sc; in TEST_IMPL() local 163 start_watcher(loop, SIGCHLD, &sc, 0); in TEST_IMPL() 164 sc.stop_or_close = STOP; /* stop, don't close the signal handle */ in TEST_IMPL() 167 ASSERT(sc.ncalls == NSIGNALS); in TEST_IMPL() 172 ASSERT(sc.ncalls == NSIGNALS); in TEST_IMPL() 174 sc.ncalls = 0; in TEST_IMPL() 175 sc.stop_or_close = CLOSE; /* now close it when it's done */ in TEST_IMPL() 176 uv_signal_start(&sc.handle, signal_cb, SIGCHLD); in TEST_IMPL() 181 ASSERT(sc.ncalls == NSIGNALS); in TEST_IMPL() 189 struct signal_ctx sc[4]; in TEST_IMPL() local [all …]
|
/third_party/mesa3d/src/gallium/auxiliary/cso_cache/ |
D | cso_cache.c | 39 static inline struct cso_hash *_cso_hash_for_type(struct cso_cache *sc, enum cso_cache_type type) in _cso_hash_for_type() argument 41 return &sc->hashes[type]; in _cso_hash_for_type() 73 static inline void sanitize_hash(struct cso_cache *sc, in sanitize_hash() argument 78 if (sc->sanitize_cb) in sanitize_hash() 79 sc->sanitize_cb(hash, type, max_size, sc->sanitize_data); in sanitize_hash() 106 cso_insert_state(struct cso_cache *sc, in cso_insert_state() argument 110 struct cso_hash *hash = _cso_hash_for_type(sc, type); in cso_insert_state() 111 sanitize_hash(sc, hash, type, sc->max_size); in cso_insert_state() 117 cso_find_state(struct cso_cache *sc, in cso_find_state() argument 120 struct cso_hash *hash = _cso_hash_for_type(sc, type); in cso_find_state() [all …]
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_self/ |
D | stress.c | 177 for (sc = 0; sc < NSCENAR; sc++) in main() 178 ids[sc] = sc; in main() 205 for (sc = 0; sc < NSCENAR; sc++) { in main() 207 status[sc] = in main() 208 pthread_create(&creation[sc], &scenarii[sc].ta, in main() 209 threaded, &ids[sc]); in main() 212 switch (scenarii[sc].result) { in main() 214 if (status[sc] != 0) { in main() 221 if (status[sc] == 0) { in main() 238 for (sc = 0; sc < NSCENAR; sc++) { in main() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | inheritance1.types | 47 var sc: SelectableControl; 48 >sc : SelectableControl 56 sc = b; 57 >sc = b : Button 58 >sc : SelectableControl 66 b = sc; 67 >b = sc : SelectableControl 69 >sc : SelectableControl 79 sc = t; 80 >sc = t : TextBox [all …]
|
/third_party/ffmpeg/libavformat/ |
D | mov.c | 197 MOVStreamContext *sc; in mov_read_covr() local 211 sc = av_mallocz(sizeof(*sc)); in mov_read_covr() 212 if (!sc) in mov_read_covr() 216 av_free(sc); in mov_read_covr() 220 st->priv_data = sc; in mov_read_covr() 629 MOVStreamContext *sc; in mov_read_dref() local 635 sc = st->priv_data; in mov_read_dref() 641 entries >= UINT_MAX / sizeof(*sc->drefs)) in mov_read_dref() 644 for (i = 0; i < sc->drefs_count; i++) { in mov_read_dref() 645 MOVDref *dref = &sc->drefs[i]; in mov_read_dref() [all …]
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/ |
D | SpoofCheckerTest.java | 75 SpoofChecker sc = new SpoofChecker.Builder().build(); in TestUSpoof() local 76 if (sc == null) { in TestUSpoof() 163 SpoofChecker sc = new SpoofChecker.Builder().setChecks(SpoofChecker.ALL_CHECKS).build(); in TestGetSetChecks1() local 165 t = sc.getChecks(); in TestGetSetChecks1() 168 sc = new SpoofChecker.Builder().setChecks(0).build(); in TestGetSetChecks1() 169 t = sc.getChecks(); in TestGetSetChecks1() 174 sc = new SpoofChecker.Builder().setChecks(checks).build(); in TestGetSetChecks1() 175 t = sc.getChecks(); in TestGetSetChecks1() 184 SpoofChecker sc = new SpoofChecker.Builder().setChecks(SpoofChecker.CHAR_LIMIT).build(); in TestGetSetAllowedChars() local 188 uset = sc.getAllowedChars(); in TestGetSetAllowedChars() [all …]
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/text/ |
D | SpoofCheckerTest.java | 78 SpoofChecker sc = new SpoofChecker.Builder().build(); in TestUSpoof() local 79 if (sc == null) { in TestUSpoof() 166 SpoofChecker sc = new SpoofChecker.Builder().setChecks(SpoofChecker.ALL_CHECKS).build(); in TestGetSetChecks1() local 168 t = sc.getChecks(); in TestGetSetChecks1() 171 sc = new SpoofChecker.Builder().setChecks(0).build(); in TestGetSetChecks1() 172 t = sc.getChecks(); in TestGetSetChecks1() 177 sc = new SpoofChecker.Builder().setChecks(checks).build(); in TestGetSetChecks1() 178 t = sc.getChecks(); in TestGetSetChecks1() 187 SpoofChecker sc = new SpoofChecker.Builder().setChecks(SpoofChecker.CHAR_LIMIT).build(); in TestGetSetAllowedChars() local 191 uset = sc.getAllowedChars(); in TestGetSetAllowedChars() [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | vf_signature.c | 89 StreamContext *sc = &(sic->streamcontexts[FF_INLINK_IDX(inlink)]); in config_input() local 91 sc->time_base = inlink->time_base; in config_input() 93 …sc->divide = (((uint64_t) inlink->w/32) * (inlink->w/32 + 1) * (inlink->h/32 * inlink->h/32 + 1) >… in config_input() 94 if (sc->divide) { in config_input() 97 sc->w = inlink->w; in config_input() 98 sc->h = inlink->h; in config_input() 107 static uint64_t get_block_sum(StreamContext *sc, uint64_t intpic[32][32], const Block *b) in get_block_sum() argument 149 StreamContext *sc = &(sic->streamcontexts[FF_INLINK_IDX(inlink)]); in filter_frame() local 176 int64_t precfactor = (sc->divide) ? 65536 : BLOCK_LCM; in filter_frame() 179 if (sc->curfinesig) { in filter_frame() [all …]
|
D | vf_bm3d.c | 272 SliceContext *sc = &s->slices[jobnr]; in do_block_matching_multi() local 276 int i, index = sc->nb_match_blocks; in do_block_matching_multi() 288 if (index >= s->group_size && score >= sc->match_blocks[index - 1].score) { in do_block_matching_multi() 295 sc->match_blocks[index].score = score; in do_block_matching_multi() 296 sc->match_blocks[index].y = pos.y; in do_block_matching_multi() 297 sc->match_blocks[index].x = pos.x; in do_block_matching_multi() 299 qsort(sc->match_blocks, index, sizeof(PosPairCode), cmp_scores); in do_block_matching_multi() 303 sc->nb_match_blocks = index; in do_block_matching_multi() 309 SliceContext *sc = &s->slices[jobnr]; in block_matching_multi() local 331 sc->search_positions[index++] = pos; in block_matching_multi() [all …]
|
/third_party/libunwind/libunwind/src/aarch64/ |
D | Gresume.c | 99 struct sigcontext *sc = (struct sigcontext *) c->sigcontext_addr; in aarch64_local_resume() local 101 if (c->dwarf.eh_valid_mask & 0x1) sc->regs[0] = c->dwarf.eh_args[0]; in aarch64_local_resume() 102 if (c->dwarf.eh_valid_mask & 0x2) sc->regs[1] = c->dwarf.eh_args[1]; in aarch64_local_resume() 103 if (c->dwarf.eh_valid_mask & 0x4) sc->regs[2] = c->dwarf.eh_args[2]; in aarch64_local_resume() 104 if (c->dwarf.eh_valid_mask & 0x8) sc->regs[3] = c->dwarf.eh_args[3]; in aarch64_local_resume() 106 sc->regs[4] = uc->uc_mcontext.regs[4]; in aarch64_local_resume() 107 sc->regs[5] = uc->uc_mcontext.regs[5]; in aarch64_local_resume() 108 sc->regs[6] = uc->uc_mcontext.regs[6]; in aarch64_local_resume() 109 sc->regs[7] = uc->uc_mcontext.regs[7]; in aarch64_local_resume() 110 sc->regs[8] = uc->uc_mcontext.regs[8]; in aarch64_local_resume() [all …]
|