Searched refs:number (Results 1 - 25 of 25) sorted by relevance

/darwin-on-arm/xnu/SETUP/config/
H A Dmkglue.c64 void dump_mb_handler(FILE *fp, struct idlst *vec, int number);
65 void dump_ubavec(FILE *fp, char *vector, int number);
67 void dump_intname(FILE *fp, char *vector, int number);
134 static int cntcnt = 0; /* number of interrupt counters allocated */
140 dump_ubavec(FILE *fp, char *vector, int number) argument
148 (void) sprintf(v, "%s%d", vector, number);
154 fprintf(fp, "\tmovl\t$%d,r0\n\tjmp\tdzdma\n\n", number);
159 number);
162 fprintf(fp, "\tpushl\t$%d\n", number);
176 fprintf(fp, "\tDZINTR(%s,%d)\n", vector, number);
238 dump_intname(FILE *fp, char *vector, int number) argument
286 dump_mb_handler(FILE *fp, struct idlst *vec, int number) argument
[all...]
/darwin-on-arm/xnu/EXTERNAL_HEADERS/architecture/
H A Dbyte_order.h79 float number; member in union:fconv
82 u.number = x;
90 float number; member in union:fconv
94 return u.number;
101 double number; member in union:dconv
104 u.number = x;
112 double number; member in union:dconv
116 return u.number;
/darwin-on-arm/xnu/osfmk/mach/
H A Dflipc_debug.h98 unsigned long bitvec_length = ((cb_ctl->data_buffer.number + sizeof(unsigned long) * 8)
124 + cb_ctl->endpoint.number));
154 ? cb_ctl->data_buffer.number % (sizeof(unsigned long)*8)
206 if (i > cb_ctl->data_buffer.number) {
213 cb_ctl->data_buffer.number);
219 + cb_ctl->endpoint.number));
H A Dflipc_cb.h136 * Fixed calculation of number of buffers on an endpoint
253 * node number and endpoint number, where the endpoint number will be
313 * compiler to keep the order and number of accesses intact. This
770 the number of messages that have
773 unsigned long pail_overruns_seen; /* A count of the number of overruns
975 * struct, the number of those data structures in the communications
982 * need the start and number information, though.
987 unsigned long number; /* Ho member in struct:flipc_cb_type_ctl
[all...]
/darwin-on-arm/xnu/osfmk/device/
H A Dsubrs.c320 * output : a number
326 int number; local
328 for (number = 0; ('0' <= *cp) && (*cp <= '9'); cp++)
329 number = (number * 10) + (*cp - '0');
331 return( number );
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_pcsamples.c43 unsigned int npcbufs = 8192; /* number of pc entries in buffer */
69 int pcsamples_read(user_addr_t buffer, size_t *number);
273 /* The buffer size is bounded by a min and max number of samples */
418 pcsamples_read(user_addr_t buffer, size_t *number) argument
423 count = (*number)/sizeof(* pc_buffer);
431 *number = 0;
441 *number = 0;
444 *number = copycount;
450 *number = 0;
H A Dkdebug.c185 } cpu_timebase[32]; // should be max number of actual logical cpus
400 * get the number of cpus and cache it
1115 int tts_count; /* number of task-to-string structures */
1518 kdbg_readmap(user_addr_t buffer, size_t *number, vnode_t vp, vfs_context_t ctx) argument
1520 int avail = *number;
1530 if (*number < kd_mapsize)
1612 kdbg_getentropy (user_addr_t buffer, size_t *number, int ms_timeout) argument
1614 int avail = *number;
1696 *number = 0;
1706 *number
1996 size_t number; local
2150 kdbg_read(user_addr_t buffer, size_t *number, vnode_t vp, vfs_context_t ctx) argument
2490 size_t number; local
[all...]
/darwin-on-arm/xnu/iokit/IOKit/
H A DIOLib.h152 #define IONew(type,number) (type*)IOMalloc(sizeof(type) * (number) )
153 #define IODelete(ptr,type,number) IOFree( (ptr) , sizeof(type) * (number) )
265 @abstract Sleep the calling thread for a number of milliseconds.
266 @discussion This function blocks the calling thread for at least the number of specified milliseconds, giving time to other processes.
267 @param milliseconds The integer number of milliseconds to wait. */
272 @abstract Spin delay for a number of microseconds.
273 @discussion This function spins to delay for at least the number of specified microseconds. Since the CPU is busy spinning no time is made available to other processes; this method of delay should be used only for short periods. Also, the AbsoluteTime based APIs of kern/clock.h provide finer grained and lower cost delays.
274 @param microseconds The integer number o
[all...]
/darwin-on-arm/xnu/libkern/c++/
H A DOSUnserializeXML.y82 long long number; // for number
91 int lineNumber; // current line number
163 | number { $$ = buildNumber(STATE, $1); }
244 number: NUMBER label
519 // printf("number 0x%x\n", (unsigned long)n);
665 /* keep track of line number, don't return \n's */
751 object->number = 0;
765 object->number = 0;
768 object->number
[all...]
H A DOSUnserializeXML.cpp177 long long number; // for number member in struct:object
186 int lineNumber; // current line number
380 invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
455 local variables YYSIZE and YYSTACKSIZE give the old and new number of
472 /* YYFINAL -- State number of the termination state. */
486 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
493 /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
526 /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
549 /* YYRLINE[YYN] -- source line where rule number YY
[all...]
H A DOSKext.cpp127 * Use this number to create containers.
9690 OSNumber * number = OSDynamicCast(OSNumber, theObject); local
9692 UInt64 numberValue = number->unsigned64BitValue();
/darwin-on-arm/xnu/tools/tests/libMicro/
H A DREADME71 [-C minimum number of samples (default 0)]
/darwin-on-arm/xnu/bsd/security/audit/
H A Daudit_arg.c472 audit_arg_data(struct kaudit_record *ar, void *data, size_t size, size_t number) argument
479 KASSERT(number <= UINT8_MAX,
480 ("audit_arg_data: number > UINT8_MAX"));
483 number > UINT8_MAX)
486 sz = size * number;
518 ar->k_ar.ar_arg_data_count = (u_char)number;
705 * provides access to the generation number as we need that to construct the
H A Daudit.h166 * Darwin syscall number, which is required by mac_audit_check_postselect().
231 size_t number);
/darwin-on-arm/xnu/tools/tests/affinity/
H A Dpool.c68 int number; member in struct:work
218 * set our tag to by our thread set number.
276 workp->number = iteration;
/darwin-on-arm/xnu/osfmk/i386/
H A Dcpuid.h277 uint8_t number; member in struct:__anon926
H A Dcpuid.c94 uint16_t entries; /* number of TLB entries or linesize */
292 /* first byte gives number of cpuid calls to get all descriptors */
387 /* Compute the number of page colors for this cache,
395 * color, and other bits in the pageframe number:
577 * the microcode version number a.k.a. signature a.k.a. BIOS ID
700 capp->number = bitfield32(reg[eax], 15, 8);
710 DBG(" number : %d\n", capp->number);
825 * Find the number of enabled cores and threads
/darwin-on-arm/xnu/bsd/netinet6/
H A Dip6_fw.c183 static int del_entry6 __P((struct ip6_fw_head *chainptr, u_short number));
380 /* Check unit number (-1 is wildcard) */
545 * *cookie Skip up to the first rule past this rule number;
934 dprintf(("%s bad rule number\n", err_prefix));
938 /* If entry number is 0, find highest numbered rule and add 100 */
951 /* Got a valid number; now insert it, keeping the list ordered */
971 del_entry6(struct ip6_fw_head *chainptr, u_short number) argument
979 if (number != (u_short)-1) {
981 if (fcp->rule->fw_number == number) {
1003 * same number, s
[all...]
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOHibernateRestoreKernel.c760 /* Max number conversion buffer length: a u_quad_t in base 2, plus NUL byte. */
764 * Put a NUL-terminated ASCII number (base <= 36) in a buffer in reverse
804 * the first of which gives the bit number to be inspected (origin 1), and
989 goto number;
1055 goto number;
1073 number:
/darwin-on-arm/xnu/osfmk/arm/armv/
H A Dcpufunc-v7.s294 clz r1, r3 @ number of bits to MSB of way
352 clz r2, ip @ number of bits to MSB of way
415 clz r2, ip @ number of bits to MSB of way
/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Dsystrace.c138 * Check for indirect system call... system call number
339 #error 1 << SYSTRACE_SHIFT must exceed number of system calls
776 #error 1 << SYSTRACE_SHIFT must exceed number of Mach traps
1073 #define SYSTRACE_MAJOR -24 /* let the kernel pick the device number */
1107 printf("systrace_init: failed to allocate a major number!\n");
/darwin-on-arm/xnu/bsd/dev/i386/
H A Dsysctl.c394 i386_cpu_info, "I", "Microcode version number");
513 SYSCTL_PROC(_machdep_cpu_arch_perf, OID_AUTO, number,
515 (void *)offsetof(cpuid_arch_perf_leaf_t, number),
/darwin-on-arm/xnu/bsd/netinet/
H A Din_dhcp.c175 long number = top - bottom + 1; local
176 long range_size = LONG_MAX / number;
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_journal.c129 // JOURNAL_FLUSH_TRIM_EXTENTS extents to be trimmed (even if the number
139 SYSCTL_UINT (_kern, OID_AUTO, jnl_trim_flush, CTLFLAG_RW, &jnl_trim_flush_limit, 0, "number of trimmed extents to cause a journal flush");
150 // number of bytes to checksum in a block_list_header
461 // or if the total number of printfs is less than 25. We
583 // update the number of blocks that have been flushed.
1011 // if we partially overlap this entry, adjust its block number, jnl offset, and size
1243 printf("jnl: %s: replay_journal: bogus block number 0x%llx\n", jnl->jdev_name, blhdr->binfo[i].bnum);
1271 off_t number; local
1274 number = blhdr->binfo[i].bnum;
1277 if (number
1413 off_t number = co_buf[i].block_num; local
[all...]
/darwin-on-arm/xnu/osfmk/ipc/
H A Dipc_kmsg.c544 mach_msg_type_number_t number,
549 mach_msg_type_number_t number,
888 mach_msg_type_number_t number,
893 if ( number == 0 )
896 for (i = 0 ; i < number; i++, saddr++ ) {
973 * number is the index of the type descriptor
976 * type spec are also cleaned. In that case, number
977 * specifies the number of port rights to clean.
985 mach_msg_type_number_t number,
1005 ipc_kmsg_clean_body(kmsg, number, des
886 ipc_kmsg_clean_body( __unused ipc_kmsg_t kmsg, mach_msg_type_number_t number, mach_msg_descriptor_t *saddr) argument
983 ipc_kmsg_clean_partial( ipc_kmsg_t kmsg, mach_msg_type_number_t number, mach_msg_descriptor_t *desc, vm_offset_t paddr, vm_size_t length) argument
[all...]

Completed in 293 milliseconds