/external/webrtc/webrtc/modules/video_render/linux/ |
video_render_linux_impl.h | 48 const float left, const float top, 57 float& left, float& top, 93 const float left, const float top, 100 const float left, const float top, 108 const float left, const float top, 114 const float left, const float top,
|
/external/webrtc/webrtc/modules/video_render/mac/ |
video_render_mac_carbon_impl.h | 50 const float left, 59 float& left, 95 const float left, 102 const float left, 114 const float left, 122 const float left,
|
video_render_mac_cocoa_impl.h | 50 const float left, 59 float& left, 95 const float left, 102 const float left, 114 const float left, 122 const float left,
|
/external/webrtc/webrtc/modules/video_render/windows/ |
i_video_render_win.h | 42 const float left, 52 float& left, float& top, 75 const float left, const float top, 81 const float left, 93 const float left, const float top, 99 const float left, const float top,
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
TreeBase.h | 22 NodeBase* left; member in class:mcld::NodeBase 26 NodeBase() : left(NULL), right(NULL) {} 64 return ((m_pNode->left) != (m_pNode->left->right)); 78 this->m_pNode = this->m_pNode->left; 89 this->m_pNode->left = pOther;
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/ |
vp9_intrapred16_dspr2.c | 18 const uint8_t *above, const uint8_t *left) { 23 "lb %[tmp1], (%[left]) \n\t" 24 "lb %[tmp2], 1(%[left]) \n\t" 25 "lb %[tmp3], 2(%[left]) \n\t" 26 "lb %[tmp4], 3(%[left]) \n\t" 27 "lb %[tmp5], 4(%[left]) \n\t" 28 "lb %[tmp6], 5(%[left]) \n\t" 29 "lb %[tmp7], 6(%[left]) \n\t" 30 "lb %[tmp8], 7(%[left]) \n\t" 31 "lb %[tmp9], 8(%[left]) \n\t [all...] |
/hardware/qcom/display/msm8960/libtilerenderer/ |
tilerenderer.cpp | 36 int left, int top, 46 if (!left && !right && !top && !bottom) { 47 left = 0; 53 if (!left && !right && !top && !bottom) { 59 int l = left, t = (height - bottom), w = (right - left), h = (bottom - top), preserve = 0;
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/ |
ver4_patricia_trie_writing_helper.h | 111 bool operator()(const DictProbability &left, const DictProbability &right) { 112 if (left.getProbability() != right.getProbability()) { 113 return left.getProbability() > right.getProbability(); 115 if (left.getTimestamp() != right.getTimestamp()) { 116 return left.getTimestamp() < right.getTimestamp(); 118 return left.getDictPos() > right.getDictPos();
|
/external/opencv3/modules/cudastereo/src/ |
stereobm.cpp | 58 void stereoBM_CUDA(const PtrStepSzb& left, const PtrStepSzb& right, const PtrStepSzb& disp, int ndisp, int winsz, const PtrStepSz<unsigned int>& minSSD_buf, cudaStream_t & stream); 71 void compute(InputArray left, InputArray right, OutputArray disparity); 72 void compute(InputArray left, InputArray right, OutputArray disparity, Stream& stream); 131 void StereoBMImpl::compute(InputArray left, InputArray right, OutputArray disparity) 133 compute(left, right, disparity, Stream::Null()); 145 GpuMat left = _left.getGpuMat(); 148 CV_Assert( left.type() == CV_8UC1 ); 149 CV_Assert( left.size() == right.size() && left.type() == right.type() ); 151 _disparity.create(left.size(), CV_8UC1) [all...] |
/frameworks/base/core/java/android/view/ |
Gravity.java | 32 /** Raw bit controlling how the left/top edge is placed. */ 49 /** Push object to the left of its container, not changing its size. */ 50 public static final int LEFT = (AXIS_PULL_BEFORE|AXIS_SPECIFIED)<<AXIS_X_SHIFT; 66 public static final int FILL_HORIZONTAL = LEFT|RIGHT; 85 * absolute LEFT/RIGHT). 115 public static final int START = RELATIVE_LAYOUT_DIRECTION | LEFT; 175 * @param xAdj Offset to apply to the X axis. If gravity is LEFT this 177 * the left; if gravity is CENTER_HORIZONTAL it pushes it to the 178 * right or left; otherwise it is ignored. 190 outRect.left = container.lef [all...] |
/external/javassist/src/main/javassist/compiler/ast/ |
ASTList.java | 25 private ASTree left; field in class:ASTList 29 left = _head; 34 left = _head; 42 public ASTree getLeft() { return left; } 46 public void setLeft(ASTree _left) { left = _left; } 55 public ASTree head() { return left; } 58 left = _head; 80 ASTree a = list.left; 129 if (list.left == oldObj) { 130 list.left = newObj [all...] |
/external/llvm/docs/_static/ |
llvm.css | 15 border-collapse: collapse; margin-top: 1em; margin-left: 1em; 33 padding-left: 8pt; 38 h1, .doc_title, .title { text-align: left; font-size: 25pt } 44 text-align: left; font-size: 12pt; 53 .doc_author { text-align: left; font-weight: bold; padding-left: 20pt } 54 .doc_text { text-align: left; padding-left: 20pt; padding-right: 10pt } 56 .doc_footer { text-align: left; padding: 0 0 0 0 } 81 h2+div, h2+p {text-align: left; padding-left: 20pt; padding-right: 10pt; [all...] |
/external/wpa_supplicant_8/src/crypto/ |
aes-omac1.c | 49 size_t i, e, left, total_len; local 62 left = total_len; 68 while (left >= AES_BLOCK_SIZE) { 77 left == AES_BLOCK_SIZE) 84 if (left > AES_BLOCK_SIZE) 86 left -= AES_BLOCK_SIZE; 93 if (left || total_len == 0) { 94 for (i = 0; i < left; i++) { 101 if (i + 1 == left) 108 cbc[left] ^= 0x80 [all...] |
/packages/apps/Calendar/src/com/android/calendar/ |
EventGeometry.java | 48 public boolean computeEventRect(int date, int left, int top, int cellWidth, Event event) { 101 event.left = left + col * (colWidth + mCellMargin); 102 event.right = event.left + colWidth; 110 if (event.left < selection.right && event.right >= selection.left 121 float left = event.left; local 126 if (x >= left) { 155 // x < left [all...] |
/external/zlib/src/examples/ |
enough.c | 120 left: number of available bit patterns at length len 126 left: 2..syms - 1, but only the evens (so syms == 8 -> 2, 4, 6) 129 syms == 2 is not saved since that immediately leads to a single code. left 132 left ends at syms-1 since left == syms immediately results in a single code. 133 (left > sym is not allowed since that would result in an incomplete code.) 151 to the num[] array as described above for the (syms, left, len) triplet. 199 len through max inclusive, coding syms symbols, with left bit patterns of 203 local big_t count(int syms, int len, int left) 213 if (syms == left) 406 int left; \/* number of unused bit patterns at this length *\/ local [all...] |
gzjoin.c | 81 unsigned left; /* bytes remaining at next */ member in struct:__anon27702 113 in->left = 0; 127 if (in->left != 0) 131 len = (long)read(in->fd, in->buf + in->left, CHUNK - in->left); 134 in->left += (unsigned)len; 135 } while (len != 0 && in->left < CHUNK); 140 #define bget(in) (in->left ? 0 : bload(in), \ 141 in->left ? (in->left--, *(in->next)++) : 176 unsigned left; local [all...] |
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
number-handler.js | 30 function mergeNumbers(left, right) { 31 return [left, right, numberToString]; 35 function mergeFlex(left, right) { 36 if (left == 0) 38 return clampedMergeNumbers(0, Infinity)(left, right); 41 function mergePositiveIntegers(left, right) { 42 return [left, right, function(x) { 48 return function(left, right) { 49 return [left, right, function(x) { 55 function round(left, right) [all...] |
/prebuilts/go/darwin-x86/test/bench/shootout/ |
binary-tree-freelist.go | 48 left, right *Node 58 if n.left != nil { 59 n.left.free() 64 n.left = arena.head 68 func (a *Arena) New(item int, left, right *Node) *Node { 72 nodes[i].left = &nodes[i+1] 77 a.head = a.head.left 79 n.left = left 92 if n.left == nil [all...] |
/prebuilts/go/linux-x86/test/bench/shootout/ |
binary-tree-freelist.go | 48 left, right *Node 58 if n.left != nil { 59 n.left.free() 64 n.left = arena.head 68 func (a *Arena) New(item int, left, right *Node) *Node { 72 nodes[i].left = &nodes[i+1] 77 a.head = a.head.left 79 n.left = left 92 if n.left == nil [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_reconintra.c | 38 const uint8_t *left) { \ 39 type##_predictor(dst, stride, size, above, left); \ 49 const uint8_t *above, const uint8_t *left) { 54 dst[r * stride] = ROUND_POWER_OF_TWO(left[r] + left[r + 1], 1); 55 dst[(bs - 1) * stride] = left[bs - 1]; 60 dst[r * stride] = ROUND_POWER_OF_TWO(left[r] + left[r + 1] * 2 + 61 left[r + 2], 2); 62 dst[(bs - 2) * stride] = ROUND_POWER_OF_TWO(left[bs - 2] [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
NFAFactory.java | 85 NFAState s = alt.left; 119 NFAState left = newState(); local 121 left.associatedASTNode = associatedAST; 123 transitionBetweenStates(left, right, label); 124 StateCluster g = new StateCluster(left, right); 134 * what an alt block looks like, must have extra state on left. 137 NFAState left = newState(); local 139 left.associatedASTNode = associatedAST; 143 left.addTransition(e); 144 StateCluster g = new StateCluster(left, right) 164 NFAState left = newState(); local 235 NFAState left = newState(); local 247 NFAState left = newState(); local 265 NFAState left = newState(); local 279 NFAState left = newState(); local 417 NFAState left = newState(); local 511 NFAState left = newState(); local 672 NFAState left = newState(); local [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
BackgroundFallback.java | 50 int left = width; local 73 left = Math.min(left, child.getLeft()); 79 if (left >= right || top >= bottom) { 88 if (left > 0) { 89 mBackgroundFallback.setBounds(0, top, left, height); 97 mBackgroundFallback.setBounds(left, bottom, right, height);
|
/toolchain/binutils/binutils-2.25/libiberty/ |
splay-tree.c | 84 deallocated, we just need to process left and right. */ 86 if (active->left) 88 KDEL (active->left->key); 89 VDEL (active->left->value); 90 active->left->key = (splay_tree_key)pending; 91 pending = (splay_tree_node)(active->left); 110 /* Rotate the edge joining the left child N with its parent P. PP is the 119 p->left = tmp; 130 tmp = n->left; 131 n->left = p 420 splay_tree_node left, right; local [all...] |
/external/pdfium/core/include/fxcrt/ |
fx_coordinates.h | 194 void Set(baseType left, baseType top, baseType width, baseType height) { 195 FXT_RECT::left = left, FXT_RECT::top = top, FXT_RECT::width = width, member in class:CFX_RTemplate::FXT_RECT 198 void Set(baseType left, baseType top, const FXT_SIZE& size) { 199 FXT_RECT::left = left, FXT_RECT::top = top, FXT_RECT::Size(size); member in class:CFX_RTemplate::FXT_RECT 213 FXT_RECT::left = FXT_RECT::top = FXT_RECT::width = FXT_RECT::height = 0; member in class:CFX_RTemplate::FXT_RECT 216 left += p.x, top += p.y; 220 left -= p.x, top -= p.y; 223 baseType right() const { return left + width; 263 FXT_RECT::left += left; member in class:CFX_RTemplate::FXT_RECT 413 baseType left, top; member in class:CFX_RTemplate 424 int left; member in struct:FX_RECT 600 FX_FLOAT left; member in class:CFX_FloatRect [all...] |
/libcore/ojluni/src/main/java/java/util/ |
DualPivotQuicksort.java | 101 * @param left the index of the first element, inclusive, to be sorted 107 static void sort(int[] a, int left, int right, 110 if (right - left < QUICKSORT_THRESHOLD) { 111 sort(a, left, right, true); 120 int count = 0; run[0] = left; 123 for (int k = left; k < right; run[count] = k) { 134 sort(a, left, right, true); 145 sort(a, left, right, true); 164 int ao, bo; // array offsets from 'left' 165 int blen = right - left; // space needed for [all...] |