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

1234567891011>>

/macosx-10.9.5/objc4-551.1/runtime/
H A Dobjc-sel-table.s10 .space PAGE_SIZE-16
12 /* space for selopt, smax/capacity=262144, blen/mask=65535+1 */
13 .space 65536
14 .space 262144 /* checkbytes */
15 .space 262144*4 /* offsets */
18 /* space for clsopt, smax/capacity=16384, blen/mask=4095+1 */
19 .space PAGE_SIZE
20 .space 16384 /* checkbytes */
21 .space 16384*12 /* offsets to name and class and header_info */
22 .space PAGE_SIZ
[all...]
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/text-relocs/
H A Dspace.s3 _junk: .space 1024*1024
/macosx-10.9.5/xnu-2422.115.4/osfmk/ipc/
H A Dipc_space.c96 * Function versions of the IPC space inline reference.
101 ipc_space_t space)
103 is_reference(space);
108 ipc_space_t space)
110 is_release(space);
116 * Creates a new IPC space.
118 * The new space has two references, one for the caller
123 * KERN_SUCCESS Created a space.
132 ipc_space_t space; local
137 space
100 ipc_space_reference( ipc_space_t space) argument
107 ipc_space_release( ipc_space_t space) argument
196 ipc_space_t space; local
223 ipc_space_clean( ipc_space_t space) argument
285 ipc_space_terminate( ipc_space_t space) argument
[all...]
H A Dipc_entry.c88 * The space must be read or write locked throughout.
89 * The space must be active.
94 ipc_space_t space,
100 assert(is_active(space));
104 if (index < space->is_table_size) {
105 entry = &space->is_table[index];
121 * Tries to allocate an entry out of the space.
123 * The space is write-locked and active throughout.
132 ipc_space_t space,
140 assert(is_active(space));
93 ipc_entry_lookup( ipc_space_t space, mach_port_name_t name) argument
131 ipc_entry_get( ipc_space_t space, mach_port_name_t *namep, ipc_entry_t *entryp) argument
198 ipc_entry_alloc( ipc_space_t space, mach_port_name_t *namep, ipc_entry_t *entryp) argument
240 ipc_entry_alloc_name( ipc_space_t space, mach_port_name_t name, ipc_entry_t *entryp) argument
352 ipc_entry_dealloc( ipc_space_t space, mach_port_name_t name, ipc_entry_t entry) argument
402 ipc_entry_modified( ipc_space_t space, mach_port_name_t name, __assert_only ipc_entry_t entry) argument
456 ipc_entry_grow_table( ipc_space_t space, ipc_table_elems_t target_size) argument
[all...]
H A Dipc_right.h77 /* Find an entry in a space, given the name */
79 ipc_space_t space,
83 /* Find two entries in a space, given two names */
85 ipc_space_t space,
91 /* Translate (space, object) -> (name, entry) */
93 ipc_space_t space,
100 ipc_space_t space,
109 ipc_space_t space,
114 #define ipc_right_request_cancel_macro(space, port, name, entry) \
116 ipc_right_request_cancel((space), (por
[all...]
H A Dipc_entry.h86 * This hash table converts (space, object) -> name.
137 /* Search for entry in a space by name */
139 ipc_space_t space,
142 /* Allocate an entry in a space */
144 ipc_space_t space,
148 /* Allocate an entry in a space, growing the space if necessary */
150 ipc_space_t space,
154 /* Allocate/find an entry in a space with a specific name */
156 ipc_space_t space,
[all...]
H A Dipc_object.c130 * Look up an object in a space.
136 * KERN_INVALID_TASK The space is dead.
143 ipc_space_t space,
152 kr = ipc_right_lookup_read(space, name, &entry);
155 /* space is read-locked and active */
158 is_read_unlock(space);
166 is_read_unlock(space);
175 * Look up two objects in a space.
181 * KERN_INVALID_TASK The space is dead.
188 ipc_space_t space,
142 ipc_object_translate( ipc_space_t space, mach_port_name_t name, mach_port_right_t right, ipc_object_t *objectp) argument
187 ipc_object_translate_two( ipc_space_t space, mach_port_name_t name1, mach_port_right_t right1, ipc_object_t *objectp1, mach_port_name_t name2, mach_port_right_t right2, ipc_object_t *objectp2) argument
244 ipc_object_alloc_dead( ipc_space_t space, mach_port_name_t *namep) argument
279 ipc_object_alloc_dead_name( ipc_space_t space, mach_port_name_t name) argument
319 ipc_object_alloc( ipc_space_t space, ipc_object_type_t otype, mach_port_type_t type, mach_port_urefs_t urefs, mach_port_name_t *namep, ipc_object_t *objectp) argument
390 ipc_object_alloc_name( ipc_space_t space, ipc_object_type_t otype, mach_port_type_t type, mach_port_urefs_t urefs, mach_port_name_t name, ipc_object_t *objectp) argument
497 ipc_object_copyin( ipc_space_t space, mach_port_name_t name, mach_msg_type_name_t msgt_name, ipc_object_t *objectp) argument
765 ipc_object_copyout( ipc_space_t space, ipc_object_t object, mach_msg_type_name_t msgt_name, boolean_t overflow, mach_port_name_t *namep) argument
855 ipc_object_copyout_name( ipc_space_t space, ipc_object_t object, mach_msg_type_name_t msgt_name, boolean_t overflow, mach_port_name_t name) argument
974 ipc_object_copyout_dest( ipc_space_t space, ipc_object_t object, mach_msg_type_name_t msgt_name, mach_port_name_t *namep) argument
1072 ipc_object_rename( ipc_space_t space, mach_port_name_t oname, mach_port_name_t nname) argument
[all...]
H A Dmach_debug.c98 * KERN_INVALID_TASK The space is null.
99 * KERN_INVALID_TASK The space is dead.
107 __unused ipc_space_t space,
116 ipc_space_t space,
124 if (space == IS_NULL)
127 kr = ipc_port_translate_receive(space, name, &port);
144 * Returns information about an IPC space.
149 * KERN_INVALID_TASK The space is null.
150 * KERN_INVALID_TASK The space is dead.
157 __unused ipc_space_t space,
106 mach_port_get_srights( __unused ipc_space_t space, __unused mach_port_name_t name, __unused mach_port_rights_t *srightsp) argument
115 mach_port_get_srights( ipc_space_t space, mach_port_name_t name, mach_port_rights_t *srightsp) argument
156 mach_port_space_info( __unused ipc_space_t space, __unused ipc_info_space_t *infop, __unused ipc_info_name_array_t *tablep, __unused mach_msg_type_number_t *tableCntp, __unused ipc_info_tree_name_array_t *treep, __unused mach_msg_type_number_t *treeCntp) argument
168 mach_port_space_info( ipc_space_t space, ipc_info_space_t *infop, ipc_info_name_array_t *tablep, mach_msg_type_number_t *tableCntp, __unused ipc_info_tree_name_array_t *treep, __unused mach_msg_type_number_t *treeCntp) argument
310 mach_port_dnrequest_info( __unused ipc_space_t space, __unused mach_port_name_t name, __unused unsigned int *totalp, __unused unsigned int *usedp) argument
320 mach_port_dnrequest_info( ipc_space_t space, mach_port_name_t name, unsigned int *totalp, unsigned int *usedp) argument
384 mach_port_kobject( __unused ipc_space_t space, __unused mach_port_name_t name, __unused natural_t *typep, __unused mach_vm_address_t *addrp) argument
394 mach_port_kobject( ipc_space_t space, mach_port_name_t name, natural_t *typep, mach_vm_address_t *addrp) argument
461 mach_port_kernel_object( __unused ipc_space_t space, __unused mach_port_name_t name, __unused unsigned int *typep, __unused unsigned int *addrp) argument
471 mach_port_kernel_object( ipc_space_t space, mach_port_name_t name, unsigned int *typep, unsigned int *addrp) argument
[all...]
H A Dmach_port.c213 * Retrieves a list of the rights present in the space,
217 * are an accurate snapshot of the space.
222 * KERN_INVALID_TASK The space is null.
223 * KERN_INVALID_TASK The space is dead.
229 ipc_space_t space,
253 if (space == IS_NULL)
262 is_read_lock(space);
263 if (!is_active(space)) {
264 is_read_unlock(space);
272 /* upper bound on number of names in the space */
228 mach_port_names( ipc_space_t space, mach_port_name_t **namesp, mach_msg_type_number_t *namesCnt, mach_port_type_t **typesp, mach_msg_type_number_t *typesCnt) argument
443 mach_port_type( ipc_space_t space, mach_port_name_t name, mach_port_type_t *typep) argument
500 mach_port_rename( __unused ipc_space_t space, __unused mach_port_name_t oname, __unused mach_port_name_t nname) argument
545 mach_port_allocate_name( ipc_space_t space, mach_port_right_t right, mach_port_name_t name) argument
582 mach_port_allocate( ipc_space_t space, mach_port_right_t right, mach_port_name_t *namep) argument
615 mach_port_allocate_qos( ipc_space_t space, mach_port_right_t right, mach_port_qos_t *qosp, mach_port_name_t *namep) argument
650 mach_port_allocate_full( ipc_space_t space, mach_port_right_t right, mach_port_t proto, mach_port_qos_t *qosp, mach_port_name_t *namep) argument
749 mach_port_destroy( ipc_space_t space, mach_port_name_t name) argument
790 mach_port_deallocate( ipc_space_t space, mach_port_name_t name) argument
830 mach_port_get_refs( ipc_space_t space, mach_port_name_t name, mach_port_right_t right, mach_port_urefs_t *urefsp) argument
914 mach_port_mod_refs( ipc_space_t space, mach_port_name_t name, mach_port_right_t right, mach_port_delta_t delta) argument
985 mach_port_peek( ipc_space_t space, mach_port_name_t name, mach_msg_trailer_type_t trailer_type, mach_port_seqno_t *seqnop, mach_msg_size_t *msg_sizep, mach_msg_id_t *msg_idp, mach_msg_trailer_info_t trailer_infop, mach_msg_type_number_t *trailer_sizep) argument
1050 mach_port_set_mscount( ipc_space_t space, mach_port_name_t name, mach_port_mscount_t mscount) argument
1090 mach_port_set_seqno( ipc_space_t space, mach_port_name_t name, mach_port_seqno_t seqno) argument
1130 mach_port_get_context( ipc_space_t space, mach_port_name_t name, mach_vm_address_t *context) argument
1176 mach_port_set_context( ipc_space_t space, mach_port_name_t name, mach_vm_address_t context) argument
1227 mach_port_get_set_status( ipc_space_t space, mach_port_name_t name, mach_port_name_t **members, mach_msg_type_number_t *membersCnt) argument
1357 mach_port_move_member( ipc_space_t space, mach_port_name_t member, mach_port_name_t after) argument
1485 mach_port_request_notification( ipc_space_t space, mach_port_name_t name, mach_msg_id_t id, mach_port_mscount_t sync, ipc_port_t notify, ipc_port_t *previousp) argument
1621 mach_port_insert_right( ipc_space_t space, mach_port_name_t name, ipc_port_t poly, mach_msg_type_name_t polyPoly) argument
1658 mach_port_extract_right( ipc_space_t space, mach_port_name_t name, mach_msg_type_name_t msgt_name, ipc_port_t *poly, mach_msg_type_name_t *polyPoly) argument
1731 mach_port_get_attributes( ipc_space_t space, mach_port_name_t name, int flavor, mach_port_info_t info, mach_msg_type_number_t *count) argument
1840 mach_port_set_attributes( ipc_space_t space, mach_port_name_t name, int flavor, mach_port_info_t info, mach_msg_type_number_t count) argument
1982 mach_port_insert_member( ipc_space_t space, mach_port_name_t name, mach_port_name_t psname) argument
2040 mach_port_extract_member( ipc_space_t space, mach_port_name_t name, mach_port_name_t psname) argument
2082 task_set_port_space( ipc_space_t space, int table_entries) argument
2266 mach_port_construct( ipc_space_t space, mach_port_options_t *options, uint64_t context, mach_port_name_t *name) argument
2352 mach_port_destruct( ipc_space_t space, mach_port_name_t name, mach_port_delta_t srdelta, uint64_t guard) argument
2393 mach_port_guard( ipc_space_t space, mach_port_name_t name, uint64_t guard, boolean_t strict) argument
2437 mach_port_unguard( ipc_space_t space, mach_port_name_t name, uint64_t guard) argument
2467 mach_get_label( ipc_space_t space, mach_port_name_t name, mach_port_name_t *outlabel) argument
2513 mach_get_label( __unused ipc_space_t space, __unused mach_port_name_t name, __unused mach_port_name_t *outlabel) argument
2527 mach_get_label_text( ipc_space_t space, mach_port_name_t name, labelstr_t policies, labelstr_t outlabel) argument
2569 mach_get_label_text( __unused ipc_space_t space, __unused mach_port_name_t name, __unused labelstr_t policies, __unused labelstr_t outlabel) argument
2582 mach_set_port_label( ipc_space_t space, mach_port_name_t name, labelstr_t labelstr) argument
[all...]
H A Dipc_right.c101 * Finds an entry in a space, given the name.
103 * Nothing locked. If successful, the space is write-locked.
106 * KERN_INVALID_TASK The space is dead.
107 * KERN_INVALID_NAME Name doesn't exist in space.
112 ipc_space_t space,
118 assert(space != IS_NULL);
120 is_write_lock(space);
122 if (!is_active(space)) {
123 is_write_unlock(space);
127 if ((entry = ipc_entry_lookup(space, nam
111 ipc_right_lookup_write( ipc_space_t space, mach_port_name_t name, ipc_entry_t *entryp) argument
150 ipc_right_lookup_two_write( ipc_space_t space, mach_port_name_t name1, ipc_entry_t *entryp1, mach_port_name_t name2, ipc_entry_t *entryp2) argument
195 ipc_right_reverse( ipc_space_t space, ipc_object_t object, mach_port_name_t *namep, ipc_entry_t *entryp) argument
269 ipc_right_request_alloc( ipc_space_t space, mach_port_name_t name, boolean_t immediate, boolean_t send_possible, ipc_port_t notify, ipc_port_t *previousp) argument
444 ipc_right_request_cancel( __unused ipc_space_t space, ipc_port_t port, mach_port_name_t name, ipc_entry_t entry) argument
475 ipc_right_inuse( ipc_space_t space, __unused mach_port_name_t name, ipc_entry_t entry) argument
502 ipc_right_check( ipc_space_t space, ipc_port_t port, mach_port_name_t name, ipc_entry_t entry) argument
587 ipc_right_terminate( ipc_space_t space, mach_port_name_t name, ipc_entry_t entry) argument
713 ipc_right_destroy( ipc_space_t space, mach_port_name_t name, ipc_entry_t entry, boolean_t check_guard, uint64_t guard) argument
876 ipc_right_dealloc( ipc_space_t space, mach_port_name_t name, ipc_entry_t entry) argument
1065 ipc_right_delta( ipc_space_t space, mach_port_name_t name, ipc_entry_t entry, mach_port_right_t right, mach_port_delta_t delta) argument
1443 ipc_right_destruct( ipc_space_t space, mach_port_name_t name, ipc_entry_t entry, mach_port_delta_t srdelta, uint64_t guard) argument
1620 ipc_right_info( ipc_space_t space, mach_port_name_t name, ipc_entry_t entry, mach_port_type_t *typep, mach_port_urefs_t *urefsp) argument
1684 ipc_right_copyin_check( __assert_only ipc_space_t space, __unused mach_port_name_t name, ipc_entry_t entry, mach_msg_type_name_t msgt_name) argument
1836 ipc_right_copyin( ipc_space_t space, mach_port_name_t name, ipc_entry_t entry, mach_msg_type_name_t msgt_name, boolean_t deadok, ipc_object_t *objectp, ipc_port_t *sorightp, ipc_port_t *releasep, int *assertcntp, queue_t links) argument
2244 ipc_right_copyin_undo( ipc_space_t space, mach_port_name_t name, ipc_entry_t entry, mach_msg_type_name_t msgt_name, ipc_object_t object, ipc_port_t soright) argument
2329 ipc_right_copyin_two( ipc_space_t space, mach_port_name_t name, ipc_entry_t entry, ipc_object_t *objectp, ipc_port_t *sorightp, ipc_port_t *releasep) argument
2446 ipc_right_copyout( ipc_space_t space, mach_port_name_t name, ipc_entry_t entry, mach_msg_type_name_t msgt_name, boolean_t overflow, ipc_object_t object) argument
2651 ipc_right_rename( ipc_space_t space, mach_port_name_t oname, ipc_entry_t oentry, mach_port_name_t nname, ipc_entry_t nentry) argument
[all...]
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/branch-islands/
H A Dspace.s13 .space 15*1024*1024 + 2
23 .space 2*1024*1024
38 .space 12*1024*1024
40 .space 12*1024*1024
42 .space 12*1024*1024
48 .space 3*1024*1024
50 .space 3*1024*1024
52 .space 3*1024*1024
58 .space 24*1024*1024
60 .space 2
[all...]
H A DMakefile34 main : main.c space.s extra.c
35 ${CC} ${CCFLAGS} -I${TESTROOT}/include -o main main.c space.s extra.c
/macosx-10.9.5/dtrace-118.1/libdwarf/
H A Dpro_encode_nm.h45 char *space, int splen);
48 char *space, int splen);
H A Dpro_alloc.c44 this is to be in so it can allocate the new space
59 dwarf_p_dealloc(void *space, Dwarf_Unsigned typ) argument
61 free(space);
H A Dpro_encode_nm.c54 ** space to write leb number is provided by caller, with caller
60 char *space, int splen)
63 char *end = space + splen;
65 a = space;
80 *nbytes = a - space;
85 ** space to write leb number is provided by caller, with caller
92 char *space, int splen)
97 char *end = space + splen;
99 str = space;
121 *nbytes = str - space;
59 _dwarf_pro_encode_leb128_nm(Dwarf_Unsigned val, int *nbytes, char *space, int splen) argument
91 _dwarf_pro_encode_signed_leb128_nm(Dwarf_Signed value, int *nbytes, char *space, int splen) argument
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/
H A Dcopy-1.s6 .space 160
/macosx-10.9.5/emacs-92/emacs/src/
H A Dcxux-crt0.s39 _data_start: .space 4
/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Dpuzzle.tcl16 # if the button is next to the empty space, it moves the button into th
17 # empty space.
21 if {(($ypos($num) >= ($ypos(space) - .01))
22 && ($ypos($num) <= ($ypos(space) + .01))
23 && ($xpos($num) >= ($xpos(space) - .26))
24 && ($xpos($num) <= ($xpos(space) + .26)))
25 || (($xpos($num) >= ($xpos(space) - .01))
26 && ($xpos($num) <= ($xpos(space) + .01))
27 && ($ypos($num) >= ($ypos(space) - .26))
28 && ($ypos($num) <= ($ypos(space)
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/library/demos/
H A Dpuzzle.tcl14 # if the button is next to the empty space, it moves the button into th
15 # empty space.
19 if {(($ypos($num) >= ($ypos(space) - .01))
20 && ($ypos($num) <= ($ypos(space) + .01))
21 && ($xpos($num) >= ($xpos(space) - .26))
22 && ($xpos($num) <= ($xpos(space) + .26)))
23 || (($xpos($num) >= ($xpos(space) - .01))
24 && ($xpos($num) <= ($xpos(space) + .01))
25 && ($ypos($num) >= ($ypos(space) - .26))
26 && ($ypos($num) <= ($ypos(space)
[all...]
/macosx-10.9.5/xnu-2422.115.4/osfmk/kern/
H A Dsecurity.c67 ipc_space_t space,
73 if (space == IS_NULL || space->is_task == NULL)
76 lh = space->is_task->label;
82 kr = ipc_object_copyout(space, (ipc_object_t) lh->lh_port,
94 ipc_space_t space __unused,
104 ipc_space_t space,
109 if (space == IS_NULL || space->is_task == NULL)
112 tasklabel_lock(space
66 mach_get_task_label( ipc_space_t space, mach_port_name_t *outlabel) argument
103 mach_get_task_label_text( ipc_space_t space, labelstr_t policies, labelstr_t outl) argument
160 mac_check_service( __unused ipc_space_t space, labelstr_t subj, labelstr_t obj, labelstr_t serv, labelstr_t perm) argument
191 mac_check_service( __unused ipc_space_t space, __unused labelstr_t subj, __unused labelstr_t obj, __unused labelstr_t serv, __unused labelstr_t perm) argument
204 mac_port_check_service_obj( ipc_space_t space, labelstr_t subj, mach_port_name_t obj, labelstr_t serv, labelstr_t perm) argument
265 mac_port_check_service_obj( __unused ipc_space_t space, __unused labelstr_t subj, __unused mach_port_name_t obj, __unused labelstr_t serv, __unused labelstr_t perm) argument
278 mac_port_check_access( ipc_space_t space, mach_port_name_t sub, mach_port_name_t obj, labelstr_t serv, labelstr_t perm) argument
335 mac_port_check_access( __unused ipc_space_t space, __unused mach_port_name_t sub, __unused mach_port_name_t obj, __unused labelstr_t serv, __unused labelstr_t perm) argument
348 mac_request_label( ipc_space_t space, mach_port_name_t sub, mach_port_name_t obj, labelstr_t serv, mach_port_name_t *outlabel) argument
415 mac_request_label( __unused ipc_space_t space, __unused mach_port_name_t sub, __unused mach_port_name_t obj, __unused labelstr_t serv, __unused mach_port_name_t *outlabel) argument
[all...]
/macosx-10.9.5/IOFireWireSBP2-426.4.1/IOFireWireSBP2/
H A DIOFWSBP2PseudoAddressSpace.cpp135 IOFWSBP2PseudoAddressSpace * space = NULL; local
138 space = new IOFWSBP2PseudoAddressSpace;
140 if( space != NULL )
142 if( !space->initAll( control, addr, len, reader, writer, refcon ) )
144 space->release();
145 space = NULL;
149 if( space != NULL )
154 space->release();
155 space = NULL;
159 if( space !
[all...]
/macosx-10.9.5/diskdev_cmds-572.1.1/fuser.tproj/
H A Dfuser.pl48 my $space = "";
77 print $space, $1;
78 $space = q( );
/macosx-10.9.5/swig-10/Lib/chicken/
H A Dstd_string.i70 C_word *space = C_alloc (C_SIZEOF_STRING (size));
71 $result = C_string (&space, size, (char *) $1.c_str());
76 C_word *space = C_alloc (C_SIZEOF_STRING (size));
77 $result = C_string (&space, size, (char *) $1->c_str());
97 C_word *space = C_alloc (C_SIZEOF_STRING (size));
98 $result = C_string (&space, size, (char *) $1.c_str());
/macosx-10.9.5/libauto-185.5/
H A DLarge.cpp39 small holes in the address space. We allocate on a quantum boundary always.
68 // determine the extra space to allocate for a guard page.
71 // allocate enough extra space to page-align the guard page.
83 void *space = zone->arena_allocate_large(vm_size); local
84 if (!space) return NULL;
88 void *guard_address = align_up(displace(space, header_size + allocation_size));
93 void *wb_base = wb_size ? displace(space, side_data_size()) : NULL; // start of area managed by the WriteBarrier itself.
94 unsigned char* wb_cards = wb_size ? (unsigned char *)displace(space, header_size + allocation_size + guard_size) : NULL;
96 return new (space) Large(zone, vm_size, allocation_size, layout, refcount_is_one ? 1 : 0, initial_age, wb);
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DthemeQtNoListboxes.css35 white-space: pre;

Completed in 173 milliseconds

1234567891011>>