Searched refs:index (Results 51 - 75 of 3714) sorted by relevance

1234567891011>>

/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGDesiredIdentifiers.h50 StringImpl* at(unsigned index) const;
52 StringImpl* operator[](unsigned index) const { return at(index); }
H A DDFGBinarySwitch.h55 // unsigned index = switch.caseIndex(); // index into casesVector, above
69 unsigned caseIndex() const { return m_cases[m_caseIndex].index; }
84 Case(int64_t value, unsigned index) argument
86 , index(index)
96 unsigned index; member in struct:JSC::DFG::BinarySwitch::Case
112 BranchCode(BranchKind kind, unsigned index = UINT_MAX)
114 , index(index)
119 unsigned index; member in struct:JSC::DFG::BinarySwitch::BranchCode
[all...]
H A DDFGRegisterBank.h146 unsigned index = BankInfo::toIndex(reg); local
148 ++m_data[index].lockCount;
149 VirtualRegister name = nameAtIndex(index);
151 releaseAtIndex(index);
160 unsigned index = BankInfo::toIndex(reg); local
164 // 'index' must be a valid, locked register.
165 ASSERT(index < NUM_REGS);
166 ASSERT(m_data[index].lockCount);
167 // 'index' should not currently be named, the new name must be valid.
168 ASSERT(!m_data[index]
[all...]
/macosx-10.10.1/libauto-186/
H A DPointerHash.h62 int32_t slotIndex(void *pointer) const; // returns the index of the slot containing pointer, or -1 if pointer is not in the set
79 inline bool validPointerAtIndex(uint32_t index) const { return validPointer(_pointers[index]); }
81 inline void *operator[](uint32_t index) const { return validPointerAtIndex(index) ? pointerValue(_pointers[index]) : NULL; }
83 inline void setFlag(uint32_t index, uint32_t flag) { _pointers[index] |= flag; } argument
84 inline void clearFlag(uint32_t index, uint32_t flag) { if (_pointers[index] ! argument
85 flagSet(uint32_t index, uint32_t flag) argument
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tk/
H A Dentry.rb28 def bbox(index)
29 list(tk_send_without_enc('bbox', index))
32 number(tk_send_without_enc('index', 'insert'))
35 def cursor=(index)
36 tk_send_without_enc('icursor', index)
38 index
41 def index(idx) method in class:Tk
42 number(tk_send_without_enc('index', idx))
60 def selection_adjust(index)
61 tk_send_without_enc('selection', 'adjust', index)
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/snit/
H A Dsnit_tcl83_utils.tcl80 set index "delete,$w"
81 if [info exists cmdTraceTable($index)] {
82 set cmd $cmdTraceTable($index)
83 ::unset cmdTraceTable($index) ;# prevent recursive tracing
137 foreach index [list $index1 $index2] {
138 if [info exists cmdTraceTable($index)] {
139 set cmd $cmdTraceTable($index)
143 ::unset cmdTraceTable($index) ;# prevent recursive tracing
189 set index "$op,$name"
190 #puts "::snit83::traceAddCommand: index
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dtfsmalls.h24 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
/macosx-10.10.1/apache-793/conf/
H A Dphp5.conf6 DirectoryIndex index.html index.php
/macosx-10.10.1/architecture-266/i386/
H A Dsel.h48 index :13; member in struct:sel
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/
H A Dheap.c42 * not 0-based. The parent is index/2, and the left-child is index*2.
43 * The right child is index*2+1.
72 isc_heapindex_t index; member in struct:isc_heap
77 isc_heapindex_t index, unsigned int size_increment,
99 heap->index = index;
153 if (heap->index != NULL)
154 (heap->index)(heap->array[i], i);
157 if (heap->index !
76 isc_heap_create(isc_mem_t *mctx, isc_heapcompare_t compare, isc_heapindex_t index, unsigned int size_increment, isc_heap_t **heapp) argument
206 isc_heap_delete(isc_heap_t *heap, unsigned int index) argument
231 isc_heap_increased(isc_heap_t *heap, unsigned int index) argument
239 isc_heap_decreased(isc_heap_t *heap, unsigned int index) argument
247 isc_heap_element(isc_heap_t *heap, unsigned int index) argument
[all...]
/macosx-10.10.1/libmalloc-53.1.1/src/
H A Dbitarray.h47 extern bool bitarray_get(bitarray_t bits, unsigned log_size, index_t index);
49 extern bool bitarray_set(bitarray_t bits, unsigned log_size, index_t index);
52 extern bool bitarray_zap(bitarray_t bits, unsigned log_size, index_t index);
56 // Returns the index first bit that's 1, plus 1, or 0 if all the bits are zero
58 extern bool bitarray_zap_first_set(bitarray_t bits, unsigned log_size, index_t *index);
59 // finds the first bit set, and if found, zaps it and sets index
62 // finds all the bits set, up to max, and zaps each and sets the index for each
/macosx-10.10.1/ntp-92/lib/isc/
H A Dheap.c42 * not 0-based. The parent is index/2, and the left-child is index*2.
43 * The right child is index*2+1.
72 isc_heapindex_t index; member in struct:isc_heap
77 isc_heapindex_t index, unsigned int size_increment,
98 heap->index = index;
152 if (heap->index != NULL)
153 (heap->index)(heap->array[i], i);
156 if (heap->index !
76 isc_heap_create(isc_mem_t *mctx, isc_heapcompare_t compare, isc_heapindex_t index, unsigned int size_increment, isc_heap_t **heapp) argument
203 isc_heap_delete(isc_heap_t *heap, unsigned int index) argument
228 isc_heap_increased(isc_heap_t *heap, unsigned int index) argument
236 isc_heap_decreased(isc_heap_t *heap, unsigned int index) argument
244 isc_heap_element(isc_heap_t *heap, unsigned int index) argument
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/stooop/
H A Dmkpkgidx.tcl11 # this utility must be used to create the package index file for a package that
21 # the generated package index file is fully compatible with the tcl generated
41 set index "# Package index file created with stooop version [package provide stooop] for stooop packages\n"
87 append index "\npackage ifneeded $packageName $version \[list tclPkgSetup \$dir $packageName $version [list $data]\]"
88 return $index
99 for {set index 0} {$index<[llength $argv]} {incr index} {
100 if {[string compare [lindex $argv $index]
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/tkpiechart/
H A Dobjselec.tcl25 set index [lsearch -exact $list $id]
27 if {$index > $last} {
28 selector::set $this [lrange $list $last $index] 1
30 selector::set $this [lrange $list $index $last] 1
H A Dselector.tcl37 foreach index $indices {
39 [info exists ${this}selected($index)] &&\
40 ($selected == [::set ${this}selected($index)])\
43 lappend select $index
44 ::set ${this}selected($index) 1
46 lappend deselect $index
47 ::set ${this}selected($index) 0
50 ::set ${this}order($index) $($this,order)
70 foreach index $indices {
71 ::unset ${this}selected($index)
[all...]
/macosx-10.10.1/tcl-105/tk84/tk/generic/
H A DtkMacWinMenu.c49 int index, result, finished;
75 for (index = 0; index < menuPtr->numEntries; index++) {
76 if ((menuPtr->entries[index]->type == CASCADE_ENTRY)
77 && (menuPtr->entries[index]->namePtr != NULL)) {
78 if ((menuPtr->entries[index]->childMenuRefPtr != NULL)
79 && (menuPtr->entries[index]->childMenuRefPtr->menuPtr
82 menuPtr->entries[index]->childMenuRefPtr->menuPtr;
48 int index, result, finished; local
/macosx-10.10.1/xnu-2782.1.97/EXTERNAL_HEADERS/architecture/i386/
H A Dsel.h53 index :13; member in struct:sel
/macosx-10.10.1/xnu-2782.1.97/libsyscall/wrappers/string/
H A Dindex.c34 index function
/macosx-10.10.1/zlib-55/zlib/examples/
H A Dzran.c9 its entirety, and an index built with access points about every SPAN bytes
24 To use the index, an offset in the uncompressed data is provided, for which
25 the latest accees point at or preceding that offset is located in the index.
26 The input file is positioned to the specified location in the index, and if
33 Another approach would be to generate the index on demand. In that case,
35 the index, but if a read far enough past the end of the index is required,
36 then further index entries would be generated and added.
43 Another way to build an index would be to use inflateCopy(). That would
47 index i
77 free_index(struct access *index) argument
87 addpoint(struct access *index, int bits, off_t in, off_t out, unsigned left, unsigned char *window) argument
144 struct access *index; /* access points being generated */ local
244 extract(FILE *in, struct access *index, off_t offset, unsigned char *buf, int len) argument
354 struct access *index = NULL; local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/incrtcl/iwidgets/generic/
H A Dbuttonbox.itk57 public method index {args}
66 public method buttoncget {index option}
167 # METHOD: index index
170 # numerical index, keyword "end" or "default". Returns the button's
173 itcl::body iwidgets::Buttonbox::index {index} {
175 if {[regexp {(^[0-9]+$)} $index]} {
176 if {$index < [llength $_buttonList]} {
177 return $index
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/incrtcl/iwidgets/incoming/src/
H A Dbuttoncage.itk62 public method index {args}
71 public method buttoncget {index option}
182 # METHOD: index index
185 # numerical index, keyword "end" or "default". Returns the button's
188 itcl::body iwidgets::Buttoncage::index {index} {
190 if {[regexp {(^[0-9]+$)} $index]} {
191 if {$index < [llength $_buttonList]} {
192 return $index
[all...]
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDEventOverrideDriver.cpp41 int index; local
46 for ( index=0; index<32; index++ ) {
47 _buttonMap[index].eventType = kIOHIDEventTypePointer;
48 _buttonMap[index].u.pointer.mask = (1<<index);
54 for ( index=0; index<maps->getCount(); index
137 int index; local
[all...]
/macosx-10.10.1/WebKit-7600.1.25/mac/History/
H A DWebURLsWithTitles.m54 unsigned index, count;
71 for (index = 0; index < count; ++index) {
72 [URLStrings addObject:[[URLs objectAtIndex:index] _web_originalDataAsString]];
73 [titlesOrEmptyStrings addObject:(titles == nil) ? @"" : [[titles objectAtIndex:index] _webkit_stringByTrimmingWhitespace]];
93 unsigned index, count;
102 for (index = 0; index < count; ++index) {
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/emacs-lisp/
H A Dring.el29 ;; (hd-index length . vector)
33 ;; In ring-ref, 0 is the index of the newest element. Higher indexes
34 ;; correspond to older elements; when the index equals the ring length,
37 ;; hd-index = vector index of the oldest ring item.
74 (defun ring-plus1 (index veclen)
76 (let ((new-index (+ index 1)))
77 (if (= new-index veclen) 0 new-index)))
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_array_interface.py43 self.assertEqual(u.index(0), 0)
44 self.assertEqual(u.index(1), 1)
45 self.assertRaises(ValueError, u.index, 2)
49 self.assertEqual(u.index(0), 2)
50 self.assertEqual(u.index(0, 2), 2)
51 self.assertEqual(u.index(-2, -10), 0)
52 self.assertEqual(u.index(0, 3), 3)
53 self.assertEqual(u.index(0, 3, 4), 3)
54 self.assertRaises(ValueError, u.index, 2, 0, -10)
56 self.assertRaises(TypeError, u.index)
[all...]

Completed in 293 milliseconds

1234567891011>>