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

1234567891011>>

/external/llvm/lib/Support/
H A DMemoryObject.cpp20 uint64_t current = address; local
23 if (current + size > limit)
26 while (current - address < size) {
27 if (readByte(current, &buf[(current - address)]))
30 current++;
34 *copied = current - address;
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
H A Dmain.cpp42 egl::Current *current = (egl::Current*)LocalAlloc(LPTR, sizeof(egl::Current)); local
44 if (current)
46 TlsSetValue(currentTLS, current);
48 current->error = EGL_SUCCESS;
49 current->API = EGL_OPENGL_ES_API;
50 current->display = EGL_NO_DISPLAY;
51 current->drawSurface = EGL_NO_SURFACE;
52 current->readSurface = EGL_NO_SURFACE;
58 void *current = TlsGetValue(currentTLS); local
60 if (current)
68 void *current = TlsGetValue(currentTLS); local
89 Current *current = (Current*)TlsGetValue(currentTLS); local
96 Current *current = (Current*)TlsGetValue(currentTLS); local
103 Current *current = (Current*)TlsGetValue(currentTLS); local
110 Current *current = (Current*)TlsGetValue(currentTLS); local
117 Current *current = (Current*)TlsGetValue(currentTLS); local
124 Current *current = (Current*)TlsGetValue(currentTLS); local
131 Current *current = (Current*)TlsGetValue(currentTLS); local
138 Current *current = (Current*)TlsGetValue(currentTLS); local
145 Current *current = (Current*)TlsGetValue(currentTLS); local
152 Current *current = (Current*)TlsGetValue(currentTLS); local
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DStructureChain.cpp41 for (Structure* current = head; current; current = current->storedPrototype().isNull() ? 0 : asObject(current->storedPrototype())->structure())
47 for (Structure* current = head; current; current = current->storedPrototype().isNull() ? 0 : asObject(current
[all...]
/external/webkit/Source/JavaScriptCore/API/tests/
H A DNode.c52 NodeLink* current; local
54 for (currentHandle = &node->childNodesTail, current = *currentHandle; current; currentHandle = &current->prev, current = *currentHandle) {
55 if (current->node == child) {
56 Node_deref(current->node);
57 *currentHandle = current->prev;
58 free(current);
67 NodeLink* current; local
[all...]
/external/webkit/Source/WebCore/rendering/mathml/
H A DRenderMathMLRow.cpp47 for (RenderObject* current = firstChild(); current; current = current->nextSibling()) {
48 if (current->isRenderMathMLBlock()) {
49 RenderMathMLBlock* block = toRenderMathMLBlock(current);
54 } else if (current->isBoxModelObject()) {
55 RenderBoxModelObject* box = toRenderBoxModelObject(current);
75 for (RenderObject* current = firstChild(); current; curren
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBaseTraversers.java204 * Traverse to the next node after the current node.
207 * @param current The current node of the iteration.
211 public int next(int context, int current) argument
213 return getParent(current);
217 * Traverse to the next node after the current node that is matched
221 * @param current The current node of the iteration.
226 public int next(int context, int current, int expandedTypeID) argument
229 current
294 next(int context, int current) argument
310 next(int context, int current, int expandedTypeID) argument
460 next(int context, int current) argument
475 next(int context, int current, int expandedTypeID) argument
701 next(int context, int current) argument
730 next(int context, int current, int expandedTypeID) argument
805 next(int context, int current) argument
926 next(int context, int current) argument
958 next(int context, int current, int expandedTypeID) argument
994 next(int context, int current) argument
1009 next(int context, int current, int expandedTypeID) argument
1036 next(int context, int current) argument
1054 next(int context, int current, int expandedTypeID) argument
1087 next(int context, int current) argument
1105 next(int context, int current, int expandedTypeID) argument
1160 first(int current, int expandedTypeID) argument
1183 next(int context, int current) argument
1201 next(int context, int current, int expandedTypeID) argument
1245 next(int context, int current) argument
1274 next(int context, int current, int expandedTypeID) argument
1309 next(int context, int current) argument
1337 next(int context, int current, int expandedTypeID) argument
1370 next(int context, int current) argument
1385 next(int context, int current, int expandedTypeID) argument
1443 next(int context, int current) argument
1458 next(int context, int current, int expandedTypeID) argument
1504 next(int context, int current) argument
1530 next(int context, int current, int expandedTypeID) argument
1579 next(int context, int current) argument
1594 next(int context, int current, int expandedTypeID) argument
[all...]
/external/v8/tools/
H A Dsplaytree.js147 var current = this.root_;
148 while (current.left) {
149 current = current.left;
151 return current;
162 var current = opt_startNode || this.root_;
163 while (current.right) {
164 current = current.right;
166 return current;
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A Dmain.cpp34 gl::Current *current = (gl::Current*)LocalAlloc(LPTR, sizeof(gl::Current)); local
36 if (current)
38 TlsSetValue(currentTLS, current);
40 current->context = NULL;
41 current->display = NULL;
47 void *current = TlsGetValue(currentTLS); local
49 if (current)
51 LocalFree((HLOCAL)current);
57 void *current = TlsGetValue(currentTLS); local
59 if (current)
78 Current *current = (Current*)TlsGetValue(currentTLS); local
91 Current *current = (Current*)TlsGetValue(currentTLS); local
98 Current *current = (Current*)TlsGetValue(currentTLS); local
[all...]
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DSharedResourceOpenVG.cpp34 EGLDisplayOpenVG::current()->sharedPlatformSurface()->makeCurrent();
41 EGLDisplayOpenVG::current()->sharedPlatformSurface()->makeCompatibleCurrent();
/external/chromium/net/disk_cache/
H A Dtrace.cc30 int current; member in struct:__anon2161::TraceBuffer
96 vsprintf_s(s_trace_buffer->buffer[s_trace_buffer->current], format, ap);
98 vsnprintf(s_trace_buffer->buffer[s_trace_buffer->current],
99 sizeof(s_trace_buffer->buffer[s_trace_buffer->current]), format,
103 s_trace_buffer->current++;
104 if (s_trace_buffer->current == kNumberOfEntries)
105 s_trace_buffer->current = 0;
121 int current = s_trace_buffer->current - num_traces; local
122 if (current <
[all...]
/external/chromium/chrome/browser/policy/
H A Dmock_configuration_policy_provider.cc37 for (PolicyMap::const_iterator current = policy_map_.begin();
38 current != policy_map_.end(); ++current) {
39 store->Apply(current->first, current->second->DeepCopy());
/external/webkit/Source/WebCore/css/
H A DCSSSelectorList.h59 inline CSSSelector* CSSSelectorList::next(CSSSelector* current) argument
62 while (!current->isLastInTagHistory())
63 current++;
64 return current->isLastInSelectorList() ? 0 : current + 1;
/external/guava/src/com/google/common/io/
H A DMultiReader.java33 private Reader current; field in class:MultiReader
42 * Closes the current reader and opens the next one, if any.
47 current = it.next().getInput();
52 if (current == null) {
55 int result = current.read(cbuf, off, len);
66 while (current != null) {
67 long result = current.skip(n);
78 return (current != null) && current.ready();
82 if (current !
[all...]
/external/harfbuzz/contrib/tables/
H A Dunicode_parse_common.py57 current = None
59 if current is None:
60 current = v
62 if current[1] + 1 == v[0] and current[2] == v[2]:
63 current = (current[0], v[1], v[2])
65 output.append(current)
66 current = v
67 if current i
[all...]
/external/v8/src/
H A Dhandles-inl.h72 v8::ImplementationUtilities::HandleScopeData* current = local
75 prev_next_ = current->next;
76 prev_limit_ = current->limit;
77 current->level++;
83 v8::ImplementationUtilities::HandleScopeData* current = local
86 prev_next_ = current->next;
87 prev_limit_ = current->limit;
88 current->level++;
98 v8::ImplementationUtilities::HandleScopeData* current = local
100 current
117 v8::ImplementationUtilities::HandleScopeData* current = local
134 v8::ImplementationUtilities::HandleScopeData* current = local
152 v8::ImplementationUtilities::HandleScopeData* current = local
[all...]
H A Dglobal-handles.cc266 Chunk* current = current_; local
267 ASSERT(current != NULL); // At least a single block must by allocated
269 Chunk* previous = current->previous;
270 delete current;
271 current = previous;
272 } while (current != NULL);
385 for (Node* current = head_; current != NULL; current = current
[all...]
/external/opencv/cvaux/src/
H A Dextendededges.cpp46 //void icvCutContour( CvSeq* current, IplImage* image );
47 CvSeq* icvCutContourRaster( CvSeq* current, CvMemStorage* storage, IplImage* image );
61 CvSeq* current = contours; local
70 while( current )
75 CvSeq* new_seq = icvCutContourRaster( current, storage, image );
93 if( current->v_next )
96 current = current->v_next;
102 while( !current->h_next )
104 current
121 icvCutContourRaster( CvSeq* current, CvMemStorage* storage, IplImage* image ) argument
[all...]
/external/qemu/hw/
H A Dgoldfish_device.c37 struct goldfish_device *current; member in struct:bus_state
107 if(s->current) {
108 s->current->reported_state = 1;
109 s->current = s->current->next;
112 s->current = first_device;
114 while(s->current && s->current->reported_state == 1)
115 s->current = s->current
[all...]
/external/v8/benchmarks/
H A Dsplay.js240 var current = opt_startNode || this.root_;
241 while (current.right) {
242 current = current.right;
244 return current;
304 var current = this.root_;
306 if (key < current.key) {
307 if (!current.left) {
310 if (key < current.left.key) {
312 var tmp = current
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-splay.js235 var current = opt_startNode || this.root_;
236 while (current.right) {
237 current = current.right;
239 return current;
299 var current = this.root_;
301 if (key < current.key) {
302 if (!current.left) {
305 if (key < current.left.key) {
307 var tmp = current
[all...]
/external/chromium/chrome/common/
H A Dguid.cc19 char current = guid[i]; local
21 if (current != '-')
24 if (hexchars.find(current) == std::string::npos)
/external/opencv/
H A DWLNonFileByteStream.cpp103 uchar *current = m_current; local
105 if( current+1 < m_end )
107 current[0] = (uchar)val;
108 current[1] = (uchar)(val >> 8);
109 m_current = current + 2;
121 uchar *current = m_current; local
123 if( current+3 < m_end )
125 current[0] = (uchar)val;
126 current[1] = (uchar)(val >> 8);
127 current[
[all...]
/external/chromium/chrome/browser/importer/
H A Dtoolbar_importer_utils.cc33 for (std::vector<std::string>::iterator current = cookie_list.begin();
34 current != cookie_list.end();
35 ++current) {
36 size_t position = (*current).find(kGoogleDomainSecureCookieId);
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-splay.js283 var current = this.root_;
285 if (key < current.key) {
286 if (!current.left) {
289 if (key < current.left.key) {
291 var tmp = current.left;
292 current.left = tmp.right;
293 tmp.right = current;
294 current = tmp;
295 if (!current.left) {
300 right.left = current;
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-splay.js283 var current = this.root_;
285 if (key < current.key) {
286 if (!current.left) {
289 if (key < current.left.key) {
291 var tmp = current.left;
292 current.left = tmp.right;
293 tmp.right = current;
294 current = tmp;
295 if (!current.left) {
300 right.left = current;
[all...]

Completed in 467 milliseconds

1234567891011>>