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

12

/xnu-2782.1.97/libkern/zlib/
H A Dtrees.h30 local const ct_data static_ltree[L_CODES+2] = {
91 local const ct_data static_dtree[D_CODES] = {
145 local const int base_length[LENGTH_CODES] = {
150 local const int base_dist[D_CODES] = {
H A Dcrc32.c59 #define local static macro
86 local unsigned long crc32_little OF((unsigned long,
88 local unsigned long crc32_big OF((unsigned long,
96 local unsigned long gf2_matrix_times OF((unsigned long *mat,
98 local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat));
102 local volatile int crc_table_empty = 1;
103 local unsigned long FAR crc_table[TBLS][256];
104 local void make_crc_table OF((void));
106 local void write_table OF((FILE *, const unsigned long FAR *));
134 local voi
[all...]
H A Dtrees.c88 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
91 local const int extra_dbits[D_CODES] /* extra bits for each distance code */
94 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
97 local const uch bl_order[BL_CODES]
117 local ct_data static_ltree[L_CODES+2];
124 local ct_data static_dtree[D_CODES];
138 local int base_length[LENGTH_CODES];
141 local int base_dist[D_CODES];
156 local static_tree_desc static_l_desc =
159 local static_tree_des
[all...]
H A Ddeflate.c103 local void fill_window OF((deflate_state *s));
104 local block_state deflate_stored OF((deflate_state *s, int flush));
105 local block_state deflate_fast OF((deflate_state *s, int flush));
107 local block_state deflate_slow OF((deflate_state *s, int flush));
109 local void lm_init OF((deflate_state *s));
110 local void putShortMSB OF((deflate_state *s, uInt b));
111 local void flush_pending OF((z_streamp strm));
112 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
118 local uInt longest_match OF((deflate_state *s, IPos cur_match));
121 local uIn
[all...]
H A Dgzio.c103 local gzFile gz_open OF((const char *path, const char *mode, int fd));
104 local int do_flush OF((gzFile file, int flush));
105 local int get_byte OF((gz_stream *s));
106 local void check_header OF((gz_stream *s));
107 local int destroy OF((gz_stream *s));
108 local void putLong OF((FILE *file, uLong x));
109 local uLong getLong OF((gz_stream *s));
120 local gzFile gz_open (path, mode, fd)
288 local int get_byte(s)
315 local voi
[all...]
H A Dzutil.c229 local int next_ptr = 0;
236 local ptr_table table[MAX_PTR];
H A Dzutil.h81 #ifndef local
82 # define local static macro
H A Dinflate.c65 * - Use local copies of stream next and avail values, as well as local bit
74 * - Use local copies of window variables in inflate_fast() for speed
122 local void fixedtables OF((struct inflate_state FAR *state));
123 local int updatewindow OF((z_streamp strm, unsigned out));
127 local unsigned syncsearch OF((unsigned FAR *have, unsigned char FAR *buf,
234 local void fixedtables(state)
352 local int updatewindow(strm, out)
1268 local unsigned syncsearch(have, buf, len)
H A Dinfback.c46 local void fixedtables OF((struct inflate_state FAR *state));
102 local void fixedtables(state)
/xnu-2782.1.97/bsd/net/
H A Dkext_net.h60 const struct sockaddr *local,
62 extern int sflt_getsockname(struct socket *so, struct sockaddr **local);
H A Dntstat.c835 } local; member in struct:nstat_tucookie
943 param->remote.v4.sin_family != param->local.v4.sin_family)
949 switch (param->local.v4.sin_family)
953 if (param->local.v4.sin_len != sizeof(param->local.v4) ||
961 param->local.v4.sin_addr, param->local.v4.sin_port, 1, NULL);
972 } local, remote; local
974 if (param->local.v6.sin6_len != sizeof(param->local
[all...]
H A Dntstat.h139 } local; member in struct:nstat_tcp_add_param
153 } local; member in struct:nstat_tcp_descriptor
195 } local; member in struct:nstat_udp_descriptor
H A Dnecp.c1837 // Release local uuid mappings
3951 necp_socket_check_policy(struct necp_kernel_socket_policy *kernel_policy, necp_app_id app_id, necp_app_id real_app_id, errno_t cred_result, u_int32_t account_id, struct substring domain, u_int8_t domain_dot_count, pid_t pid, uid_t uid, u_int32_t bound_interface_index, u_int32_t traffic_class, u_int16_t protocol, union necp_sockaddr_union *local, union necp_sockaddr_union *remote) argument
4103 bool inRange = necp_is_addr_in_range((struct sockaddr *)local, (struct sockaddr *)&kernel_policy->cond_local_start, (struct sockaddr *)&kernel_policy->cond_local_end);
4114 bool inSubnet = necp_is_addr_in_subnet((struct sockaddr *)local, (struct sockaddr *)&kernel_policy->cond_local_start, kernel_policy->cond_local_prefix);
4560 necp_ip_output_check_policy(struct necp_kernel_ip_output_policy *kernel_policy, necp_kernel_policy_id socket_policy_id, u_int32_t bound_interface_index, u_int32_t last_interface_index, u_int16_t protocol, union necp_sockaddr_union *local, union necp_sockaddr_union *remote) argument
4617 bool inRange = necp_is_addr_in_range((struct sockaddr *)local, (struct sockaddr *)&kernel_policy->cond_local_start, (struct sockaddr *)&kernel_policy->cond_local_end);
4628 bool inSubnet = necp_is_addr_in_subnet((struct sockaddr *)local, (struct sockaddr *)&kernel_policy->cond_local_start, kernel_policy->cond_local_prefix);
5459 struct sockaddr_in local; local
5461 local.sin_family = remote.sin_family = AF_INET;
5462 local
5474 struct sockaddr_in6 local; local
[all...]
/xnu-2782.1.97/osfmk/mach/
H A Dmessage.h123 * and local fields, into a single value suitable for msgh_bits.
157 #define MACH_MSGH_BITS(remote, local) /* legacy */ \
158 ((remote) | ((local) << 8))
159 #define MACH_MSGH_BITS_SET_PORTS(remote, local, voucher) \
161 (((local) << 8) & MACH_MSGH_BITS_LOCAL_MASK) | \
163 #define MACH_MSGH_BITS_SET(remote, local, voucher, other) \
164 (MACH_MSGH_BITS_SET_PORTS((remote), (local), (voucher)) \
528 * another module may exceed the local modules notion of
/xnu-2782.1.97/bsd/kern/
H A Duipc_proto.c135 SYSCTL_NODE(_net, PF_LOCAL, local, CTLFLAG_RW|CTLFLAG_LOCKED,
H A Dkpi_socketfilter.c699 const struct sockaddr *local, const struct sockaddr *remote)
728 entry->sfe_cookie, head, so, local, remote);
748 sflt_getsockname(struct socket *so, struct sockaddr **local) argument
777 entry->sfe_cookie, so, local);
698 sflt_accept(struct socket *head, struct socket *so, const struct sockaddr *local, const struct sockaddr *remote) argument
/xnu-2782.1.97/bsd/sys/
H A Dkpi_socketfilter.h358 @param to The local address of the socket will be bound to.
466 @param local The local address of the about to be accepted socket.
484 const struct sockaddr *local, const struct sockaddr *remote);
/xnu-2782.1.97/osfmk/i386/
H A Dmachine_routines.c769 uintptr_t local = (uintptr_t) &local; local
772 return (local - (current_cpu_datap()->cpu_int_stack_top - INTSTACK_SIZE));
774 return (local - current_thread()->kernel_stack);
/xnu-2782.1.97/osfmk/vm/
H A Dvm_page.h207 * we use the 'wire_count' field to store the local
208 * queue id if local queues are enabled...
217 local:1, /* page is in one of the local queues (P) */ member in struct:vm_page
313 #define VM_PAGE_WIRED(m) ((!(m)->local && (m)->wire_count))
812 * local queues if they exist... its the only spot in the system where we add pages
814 * global page queues or the free queues... they NEVER move from local q to local q.
815 * the 'local' state is stable when VM_PAGE_QUEUES_REMOVE is called since we're behind
816 * the global vm_page_queue_lock at this point... we still need to take the local loc
[all...]
H A Dvm_resident.c539 m->local = FALSE;
1711 if (mem->local) {
2539 VM_PAGE_QUEUES_REMOVE(mem); /* clears local/active/inactive/throttled/speculative */
3494 * move pages from the indicated local queue to the global active queue
3525 * Switch "local" pages to "active".
3531 assert(m->local);
3543 m->local = FALSE;
3553 * Transfer the entire local queue to a regular LRU page queues.
3776 (p->local ? "" : "!"),
/xnu-2782.1.97/iokit/Kernel/
H A DIODeviceTreeSupport.cpp646 OSData * local; local
660 nw = (0 == (local = OSDynamicCast( OSData,
662 if( nw && (0 == (local = OSDynamicCast( OSData,
670 local = local2;
675 localBits = (UInt32 *) local->getBytesNoCopy();
676 localEnd = localBits + (local->getLength() / sizeof(UInt32));
692 map = OSData::withData( local, mapped->getCount() * sizeof(UInt32),
/xnu-2782.1.97/bsd/netinet/
H A Din.c193 * - unicast or multicast link local
202 int local = 0; local
206 local = 1;
209 local = 1;
220 local = 1;
224 local = in_localaddr(in);
227 return (local);
231 * Return 1 if an internet address is for a ``local'' host
233 * is true, this includes other subnets of the local net.
1759 * Return TRUE if the address might be a local broadcas
[all...]
/xnu-2782.1.97/makedefs/
H A DMakeInc.cmd128 EDM_DBPATH = $(PLATFORMPATH)/usr/local/standalone/firmware/device_map.db
/xnu-2782.1.97/osfmk/ipc/
H A Dipc_kmsg.c371 kprintf("local=null\n");
1627 * If it does succeed the remote/local port fields
2743 ipc_object_t local = (ipc_object_t) kmsg->ikm_header->msgh_local_port; local
2750 if (IO_VALID(local))
2751 ipc_object_copyin_from_kernel(local, lname);
2877 ipc_object_t local = (ipc_object_t) kmsg->ikm_header->msgh_local_port; local
2884 if (IO_VALID(local))
2885 ipc_object_copyin_from_kernel(local, lname);
3048 * If it does succeed the remote/local port fields
/xnu-2782.1.97/bsd/netinet6/
H A Din6.c766 /* Remove link local addresses from interface */
796 /* Delete the link local prefix */
1863 * join link-local all-nodes address
1946 * join interface-local all-nodes address.
2195 * We still embed link-local scope identifiers at the end of an
2587 * Find an IPv6 interface link-local address specific to an interface.
2808 int local = 0; local
2821 local = 1;
2825 local = in6_localaddr(in6);
2827 return (local);
[all...]

Completed in 177 milliseconds

12