Searched defs:back (Results 1 - 25 of 42) sorted by relevance

12

/external/icu4c/layoutex/
H A DLXUtilities.cpp77 le_int32 front, back; local
79 for (front = 0, back = length - 1; front < back; front += 1, back -= 1) {
82 array[front] = array[back];
83 array[back] = swap;
89 le_int32 front, back; local
91 for (front = 0, back = length - 1; front < back; front += 1, back
[all...]
/external/skia/include/core/
H A DSkDeque.h33 const void* back() const;
39 void* back() { function in class:SkDeque
40 return (void*)((const SkDeque*)this)->back();
/external/webkit/WebCore/page/
H A DHistory.cpp62 void History::back() function in class:WebCore::History
/external/chromium/base/
H A Devent_trace_consumer_win_unittest.cc47 EVENT_TRACE& back = events_.back(); local
50 back.MofData = new char[event->MofLength];
51 memcpy(back.MofData, event->MofData, event->MofLength);
310 *trace = &events_.back();
/external/quake/quake/src/QW/client/
H A Dr_light.c144 float front, back, frac; local
164 back = DotProduct (end, plane->normal) - plane->dist;
167 if ( (back < 0) == side)
170 frac = front / (front-back);
180 if ( (back < 0) == side )
234 // go down back side
H A Dgl_rlight.c270 float front, back, frac; local
290 back = DotProduct (end, plane->normal) - plane->dist;
293 if ( (back < 0) == side)
296 frac = front / (front-back);
306 if ( (back < 0) == side )
362 // go down back side
H A Dgl_warp.c60 vec3_t front[64], back[64]; local
102 VectorCopy (v, back[b]);
112 front[f][k] = back[b][k] = v[k] + frac*(v[3+k] - v[k]);
119 SubdividePolygon (b, back[0]);
157 // convert edges back to a normal polygon
806 qboolean front, back; local
822 front = back = false;
834 back = true;
842 if (!front || !back)
1053 // make an average value for the back t
[all...]
/external/quake/quake/src/WinQuake/
H A Dr_light.cpp144 float front, back, frac; local
164 back = DotProduct (end, plane->normal) - plane->dist;
167 if ( (back < 0) == side)
170 frac = front / (front-back);
180 if ( (back < 0) == side )
234 // go down back side
H A Dgl_rlight.cpp273 float front, back, frac; local
293 back = DotProduct (end, plane->normal) - plane->dist;
296 if ( (back < 0) == side)
299 frac = front / (front-back);
309 if ( (back < 0) == side )
365 // go down back side
/external/skia/src/core/
H A DSkDeque.cpp86 const void* SkDeque::back() const { function in class:SkDeque
87 Head* back = fBack; local
89 if (NULL == back) {
92 if (NULL == back->fEnd) { // marked as deleted
93 back = back->fPrev;
94 if (NULL == back) {
98 SkASSERT(back->fEnd);
99 return back->fEnd - fElemSize;
/external/stlport/stlport/stl/
H A D_queue.h98 reference back() { return c.back(); } function in class:queue
99 const_reference back() const { return c.back(); } function in class:queue
/external/bluetooth/bluez/compat/
H A Dfakehid.c187 static void back(int fd) function
230 back(fd); break;
/external/stlport/stlport/stl/debug/
H A D_list.h188 reference back() { function in class:list
192 const_reference back() const { function in class:list
/external/stlport/stlport/stl/pointers/
H A D_vector.h100 reference back() { return cast_traits::to_value_type_ref(_M_impl.back()); } function in class:vector
101 const_reference back() const { return cast_traits::to_value_type_cref(_M_impl.back()); } function in class:vector
H A D_deque.h150 reference back() { return cast_traits::to_value_type_ref(_M_impl.back()); } function in class:deque
152 const_reference back() const { return cast_traits::to_value_type_cref(_M_impl.back()); } function in class:deque
H A D_list.h170 reference back() { return *(--end()); } function in class:list
171 const_reference back() const { return *(--end()); } function in class:list
/external/webkit/WebKit/qt/Api/
H A Dqwebhistory.cpp219 into those that can be visited by navigating \e back and \e forward using the
220 back() and forward() functions. The current item can be obtained by calling
224 A list of items describing the pages that can be visited by going back can be
359 corresponding page; i.e., goes back one history item.
363 void QWebHistory::back() function in class:QWebHistory
376 \sa back(), goToItem()
390 \sa back(), forward()
H A Dqwebview.cpp794 // right, as it falls back to the last cursor set by
852 void QWebView::back() function in class:QWebView
866 \sa back(), pageAction()
/external/webkit/WebKit/qt/tests/qwebhistory/
H A Dtst_qwebhistory.cpp51 void back();
116 * Check QWebHistory::back() method
118 void tst_QWebHistory::back() function in class:tst_QWebHistory
122 hist->back();
126 hist->back();
136 hist->back();
169 hist->back();
171 hist->back();
235 hist->back();
237 hist->back();
[all...]
/external/webkit/WebKit/wx/
H A DWebBrowserShell.cpp144 wxBitmap back = wxArtProvider::GetBitmap(wxART_GO_BACK, wxART_TOOLBAR, wxSize(32,32)); local
145 toolbar->AddTool(ID_BACK, back, wxT("Back"));
/external/chromium/third_party/zlib/
H A Dgzio.c71 int back; /* one character push-back */ member in struct:gz_stream
72 int last; /* true if push-back is last character */
126 s->back = EOF;
416 if (s->stream.avail_out && s->back != EOF) {
417 *next_out++ = s->back;
420 s->back = EOF;
517 Push one byte back onto the stream.
525 if (s == NULL || s->mode != 'r' || c == EOF || s->back != EOF) return EOF;
526 s->back
[all...]
/external/qemu/distrib/zlib-1.2.3/
H A Dgzio.c71 int back; /* one character push-back */ member in struct:gz_stream
72 int last; /* true if push-back is last character */
122 s->back = EOF;
412 if (s->stream.avail_out && s->back != EOF) {
413 *next_out++ = s->back;
416 s->back = EOF;
513 Push one byte back onto the stream.
521 if (s == NULL || s->mode != 'r' || c == EOF || s->back != EOF) return EOF;
522 s->back
[all...]
/external/zlib/examples/
H A Dgzlog.c122 one byte back from the block length.
134 - First stored block start as the number of bits back from the final stored
140 they are different, the numbers of bits back is known to be eight.) This
204 back, crc's, and lengths, and mark foo.gz as in process for a replacement
248 jmp_buf gzlog_jump; /* where to go back to */
295 int back; /* location of first block id in bits back from first */ member in struct:log
325 5 /* op is NO_OP, last bit 8 bits back */
427 log->back = 3 + (buf[HEAD + 34] & 7);
449 ext[34] = log->back
464 int back, len, mask; local
[all...]
/external/zlib/
H A Dgzio.c71 int back; /* one character push-back */ member in struct:gz_stream
72 int last; /* true if push-back is last character */
122 s->back = EOF;
412 if (s->stream.avail_out && s->back != EOF) {
413 *next_out++ = s->back;
416 s->back = EOF;
513 Push one byte back onto the stream.
521 if (s == NULL || s->mode != 'r' || c == EOF || s->back != EOF) return EOF;
522 s->back
[all...]
H A Dinflate.h102 unsigned offset; /* distance back to copy string from */
120 int back; /* bits back of last unprocessed length/lit */ member in struct:inflate_state

Completed in 271 milliseconds

12