Searched refs:idx (Results 51 - 75 of 1353) sorted by relevance

1234567891011>>

/macosx-10.10/IOPCIFamily-239.1.2/tools/
H A Diosetarg.c22 uint32_t idx; local
33 for (idx = 2; idx < argc; idx++)
35 str = CFStringCreateWithCString(kCFAllocatorDefault, argv[idx], CFStringGetSystemEncoding());
/macosx-10.10/curl-83.1.2/curl/packages/NetWare/
H A Dget_exp.awk33 exports[++idx] = sym_name
45 printf("Added %d symbols to export list.\n", idx) > "/dev/stderr"
47 increment = int(idx / 2)
49 for (i = increment+1; i <= idx; i++) {
67 while (x < idx - 1) {
/macosx-10.10/tcl-105/tcl_ext/tls/tls/
H A DtclOpts.h7 * external vars: opt, idx, objc, objv
14 if (++idx >= objc) { \
26 var = objv[idx]; \
31 var = Tcl_GetStringFromObj(objv[idx], NULL);\
36 if (Tcl_GetIntFromObj(interp, objv[idx], \
44 if (Tcl_GetBooleanFromObj(interp, objv[idx],\
/macosx-10.10/ruby-106/ruby/ext/tk/sample/
H A Dtkmultilistbox.rb50 title_info.each_with_index{|(label, width), idx|
53 @name_index[label] << idx
55 @name_index[label] = [idx]
66 f.place('relx'=>@rel_list[idx], 'y'=>0, 'anchor'=>'nw', 'width'=>-6,
67 'relwidth'=>@rel_list[idx+1] - @rel_list[idx])
73 f.place('relx'=>@rel_list[idx], 'y'=>0, 'anchor'=>'nw', 'width'=>-4,
74 'relwidth'=>@rel_list[idx+1] - @rel_list[idx], 'relheight'=>1.0)
81 f.place('relx'=>@rel_list[idx], '
[all...]
/macosx-10.10/ruby-106/ruby/test/
H A Dtest_securerandom.rb14 65.times do |idx|
15 assert_equal(idx, @it.random_bytes(idx).size)
108 33.times do |idx|
109 assert_equal(idx * 2, @it.hex(idx).size)
110 assert_equal(idx, @it.hex(idx).gsub(/(..)/) { [$1].pack('H*') }.size)
120 17.times do |idx|
121 assert_equal(idx,
[all...]
/macosx-10.10/xnu-2782.1.97/libkern/kxld/tests/
H A Dkxld_array_test.c48 u_int idx = 0; local
66 idx = 0;
67 item = kxld_array_get_item(&array, idx);
69 assert(item == kxld_array_get_slot(&array, idx));
71 idx = titems - 1;
72 item = kxld_array_get_item(&array, idx);
74 assert(item == kxld_array_get_slot(&array, idx));
76 idx = titems;
77 item = kxld_array_get_item(&array, idx);
82 assert(item == kxld_array_get_slot(&array, idx));
[all...]
/macosx-10.10/ruby-106/ruby/tool/
H A Deval.rb38 def dirname idx
39 "ev-#{idx}"
43 Configs.each_with_index{|config, idx|
44 dir = dirname(idx)
55 Configs.each_with_index{|c, idx|
56 puts "= #{idx}"
57 system("#{Ruby} -r ev-#{idx}/yarvcore -e 'puts YARVCore::OPTS'")
61 def bench_each idx
62 puts "= #{idx}"
65 FileUtils.cd(dirname(idx)){
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2idx/include/
H A Ddependencies.inc2 ASCII diagram of the dependencies between the doctools v2 idx packages
5 ~~~~~~~~~~~ doctools::idx ~~~~~~~~~~~
7 doctools::idx::export ~~~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~ doctools::idx::import
13 doctools::idx::export::<*> | | | doctools::idx::import::<*>
16 html | | | doctools::idx::parse \\
20 doctools::idx::structure |
28 doctools::msgcat::idx::<*>
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/win/
H A Dcattcl.c105 int idx, c;
110 for (idx = 1; idx < argc; idx++) {
111 fh = fopen (argv [idx], "r");
114 argv [idx], strerror (errno));
126 argv [idx], strerror (errno));
104 int idx, c; local
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2idx/
H A Dexport_nroff.tcl12 # This package is a plugin for the doctools::idx v2 system. It takes
19 # @mdgen NODEP: doctools::idx::export::plugin
22 package require doctools::idx::export::plugin ; # Presence of this
28 package require doctools::idx::structure ; # Verification that the
45 ::doctools::idx::structure verify-as-canonical $serial
73 array set idx $serial
74 array set idx $idx(doctools::idx)
75 unset idx(doctool
[all...]
H A Dexport_html.tcl12 # This package is a plugin for the doctools::idx v2 system. It takes
19 # @mdgen NODEP: doctools::idx::export::plugin
22 package require doctools::idx::export::plugin ; # Presence of this
28 package require doctools::idx::structure ; # Verification that the
45 ::doctools::idx::structure verify-as-canonical $serial
84 class.header idx-header
85 class.title idx-title
86 class.navsep idx-navsep
87 class.navbar idx-kwnav
88 class.contents idx
[all...]
/macosx-10.10/Libc-1044.1.2/stdlib/FreeBSD/
H A Dhcreate.c93 size_t idx; local
126 for (idx = 0; idx < htablesize; idx++)
127 SLIST_INIT(&htable[idx]);
136 size_t idx; local
141 for (idx = 0; idx < htablesize; idx++) {
142 while (!SLIST_EMPTY(&htable[idx])) {
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Dradiobox.rb75 def delete(idx)
76 tk_call(@path, 'delete', index(idx))
80 def deselect(idx)
81 tk_call(@path, 'deselect', index(idx))
85 def flash(idx)
86 tk_call(@path, 'flash', index(idx))
99 def index(idx)
100 number(tk_call(@path, 'index', tagid(idx)))
103 def insert(idx, tag=nil, keys={})
113 tk_call(@path, 'insert', index(idx), tagi
[all...]
H A Dnotebook.rb69 def child_site(idx)
70 if (new_idx = self.index(idx)) < 0
71 new_idx = tagid(idx)
91 def index(idx)
92 number(tk_call(@path, 'index', tagid(idx)))
95 def insert(idx, keys={})
96 if (new_idx = self.index(idx)) < 0
97 new_idx = tagid(idx)
112 def select(idx)
113 if (new_idx = self.index(idx)) <
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DOperands.h71 T& argument(size_t idx) { return m_arguments[idx]; } argument
72 const T& argument(size_t idx) const { return m_arguments[idx]; }
74 T& local(size_t idx) { return m_locals[idx]; } argument
75 const T& local(size_t idx) const { return m_locals[idx]; }
85 T& atFor(size_t idx) argument
88 return argument(idx);
110 setLocal(size_t idx, const T& value) argument
117 getLocal(size_t idx) argument
124 setArgumentFirstTime(size_t idx, const T& value) argument
130 setLocalFirstTime(size_t idx, const T& value) argument
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclxml/tclxslt/
H A Dtclxsltproc110 for {set idx 0} {$idx < [llength $argv]} {incr idx} {
111 switch -glob -- [lindex $argv $idx] {
114 set Config(config) [lindex $argv [expr $idx + 1]]
115 incr idx
123 set Config(output) [lindex $argv [expr $idx + 1]]
124 incr idx
142 set Config(maxdepth) [lindex $argv [expr $idx + 1]]
143 incr idx
[all...]
/macosx-10.10/xnu-2782.1.97/libkern/kxld/
H A Dkxld_dict.c71 u_int *idx);
73 u_int *idx);
137 iter->idx = 0;
169 u_int idx = 0; local
174 rval = get_locate_index(dict, key, &idx);
177 entry = kxld_array_get_item(&dict->buckets, idx);
195 u_int base, idx; local
197 base = idx = dict->hash(dict, key);
200 entry = kxld_array_get_item(&dict->buckets, idx);
204 idx
226 u_int idx = 0; local
318 u_int base, idx; local
346 u_int idx = 0; local
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Modules/objc/
H A DOC_PythonArray.h78 * @param idx An index
82 - (id)objectAtIndex:(NSUInteger)idx;
86 * @abstract Replace the current value at idx by the new value
89 * @param idx An index
92 -(void)replaceObjectAtIndex:(NSUInteger)idx withObject:newValue;
120 * @param idx The index
122 -(void)insertObject:(id)anObject atIndex:(NSUInteger)idx;
133 * @param idx Which object should be removed
135 -(void)removeObjectAtIndex:(NSUInteger)idx;
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/
H A DOC_PythonArray.h78 * @param idx An index
82 - (id)objectAtIndex:(NSUInteger)idx;
86 * @abstract Replace the current value at idx by the new value
89 * @param idx An index
92 -(void)replaceObjectAtIndex:(NSUInteger)idx withObject:newValue;
120 * @param idx The index
122 -(void)insertObject:(id)anObject atIndex:(NSUInteger)idx;
133 * @param idx Which object should be removed
135 -(void)removeObjectAtIndex:(NSUInteger)idx;
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/
H A DOC_PythonArray.h78 * @param idx An index
82 - (id)objectAtIndex:(NSUInteger)idx;
86 * @abstract Replace the current value at idx by the new value
89 * @param idx An index
92 -(void)replaceObjectAtIndex:(NSUInteger)idx withObject:newValue;
120 * @param idx The index
122 -(void)insertObject:(id)anObject atIndex:(NSUInteger)idx;
133 * @param idx Which object should be removed
135 -(void)removeObjectAtIndex:(NSUInteger)idx;
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/tile/
H A Dtnotebook.rb109 def forget(idx)
110 tk_send('forget', idx)
114 def hide(idx)
115 tk_send('hide', idx)
118 def index(idx)
119 number(tk_send('index', idx))
122 def insert(idx, subwin, keys=nil)
124 tk_send('insert', idx, subwin, *hash_kv(keys))
126 tk_send('insert', idx, subwin)
131 def select(idx)
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Dmd2.c97 size_t idx = m->len & 0xf; local
101 if (len + idx >= 16) {
102 if (idx) {
103 memcpy(m->data + idx, p, 16 - idx);
106 len -= 16 - idx;
113 idx = 0;
116 memcpy(m->data + idx, p, len);
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Denvironment.c65 int idx = 0; local
74 for(idx = 0; *env != NULL && (*env)[idx] != NULL; idx++);
104 tmp = realloc(l, (idx+2) * sizeof (char *));
111 l[idx] = strdup(p);
112 if(l[idx] == NULL) {
116 l[++idx] = NULL;
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dindex.c41 int slap_str2index( const char *str, slap_mask_t *idx )
48 *idx = idxstr[i].mask;
54 void slap_index2bvlen( slap_mask_t idx, struct berval *bv ) argument
62 if ( IS_SLAP_INDEX( idx, idxstr[i].mask )) {
64 ((idx & SLAP_INDEX_SUBSTR_DEFAULT) != idxstr[i].mask))
73 void slap_index2bv( slap_mask_t idx, struct berval *bv ) argument
83 if ( IS_SLAP_INDEX( idx, idxstr[i].mask )) {
85 ((idx & SLAP_INDEX_SUBSTR_DEFAULT) != idxstr[i].mask))
/macosx-10.10/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Dentry3.rb131 idx = widget.index('insert')
132 if idx == 8
134 widget.cursor = idx - 2
135 elsif idx == 7 || idx == 12
137 widget.cursor = idx - 1
138 elsif idx <= 3
152 idx = widget.index('insert')
153 if (idx + add == 5)
155 widget.cursor = idx
[all...]

Completed in 282 milliseconds

1234567891011>>