Searched refs:numbytes (Results 1 – 5 of 5) sorted by relevance
| /xnu-8019.80.24/osfmk/prng/ ! |
| H A D | prng_random.c | 223 read_random_generate(uint8_t *buffer, size_t numbytes); 297 read_random(void * buffer, u_int numbytes) in read_random() argument 300 read_random_generate(buffer, numbytes); in read_random() 324 read_random_generate(uint8_t *buffer, size_t numbytes) in read_random_generate() argument 328 while (numbytes > 0) { in read_random_generate() 329 size_t n = MIN(numbytes, CCKPRNG_GENERATE_MAX_NBYTES); in read_random_generate() 334 numbytes -= n; in read_random_generate() 339 write_random(void * buffer, u_int numbytes) in write_random() argument 346 SHA256_Update(&ctx, buffer, numbytes); in write_random()
|
| /xnu-8019.80.24/tools/lldbmacros/ ! |
| H A D | utils.py | 223 numbytes = LazyTarget.GetProcess().WriteMemory(addr, sdata, serr) 224 if numbytes == length and serr.Success(): 239 numbytes = LazyTarget.GetProcess().WriteMemory(addr,sdata, serr) 240 if numbytes == 8 and serr.Success(): 270 numbytes = LazyTarget.GetProcess().WriteMemory(addr,sdata, serr) 271 if numbytes == 4 and serr.Success(): 286 numbytes = LazyTarget.GetProcess().WriteMemory(addr,sdata, serr) 287 if numbytes == 2 and serr.Success(): 302 numbytes = LazyTarget.GetProcess().WriteMemory(addr,sdata, serr) 303 if numbytes == 1 and serr.Success():
|
| H A D | ioreg.py | 1445 def ReadIOPortInt(addr, numbytes, lcpu): argument 1473 WriteInt32ToMemoryAddress(numbytes, int(addressof(kgm_pkt.nbytes))) and 1481 if numbytes == 1: 1483 elif numbytes == 2: 1485 elif numbytes == 4: 1488 print "{0: <#6x}: {1:#0{2}x}".format(addr, result, (numbytes*2)+2) 1490 def WriteIOPortInt(addr, numbytes, value, lcpu): argument 1516 WriteInt32ToMemoryAddress(numbytes, int(addressof(kgm_pkt.nbytes))) and 1519 if numbytes == 1: 1523 elif numbytes == 2: [all …]
|
| /xnu-8019.80.24/bsd/netinet/ ! |
| H A D | ip_dummynet.h | 273 u_int32_t numbytes; /* credit for transmission (dynamic queues) */ member 394 int numbytes; /* bits I can transmit (more or less). */ member 438 u_int32_t numbytes; /* credit for transmission (dynamic queues) */ member 531 int numbytes; /* bits I can transmit (more or less). */ member 563 u_int32_t numbytes; /* credit for transmission (dynamic queues) */ member 656 int numbytes; /* bits I can transmit (more or less). */ member
|
| H A D | ip_dummynet.c | 277 p->numbytes = user_pipe_32.numbytes; in cp_pipe_from_user_32() 324 p->numbytes = user_pipe_64.numbytes; in cp_pipe_from_user_64() 424 qp->numbytes = q->numbytes; in cp_queue_to_32_user() 446 qp->numbytes = q->numbytes; in cp_queue_to_64_user() 478 pipe_bp->numbytes = p->numbytes; in cp_pipe_to_32_user() 520 pipe_bp->numbytes = p->numbytes; in cp_pipe_to_64_user() 794 ((_m)->m_pkthdr.len*8*(hz*10) - (q)->numbytes + p->bandwidth - 1 ) / \ 852 q->numbytes += (curr_time - q->sched_time) * p->bandwidth; in ready_event() 856 if (len_scaled > q->numbytes) { in ready_event() 859 q->numbytes -= len_scaled; in ready_event() [all …]
|