Searched defs:px (Results 1 - 25 of 138) sorted by path

123456

/external/chromium_org/cc/animation/
H A Dtransform_operation.cc203 // If p = (px, py) is a point in the plane being rotated about (0, 0, nz), this
207 static void FindCandidatesInPlane(float px, argument
212 double phi = atan2(px, py);
/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/
H A Djstemplate_compiled.js67 function px(numPixels) { function
68 return round(numPixels) + "px";
80 style.left = px(point.x);
81 style.top = px(point.y);
92 style.width = px(size.width);
93 style.height = px(size.height);
/external/chromium_org/native_client_sdk/src/examples/demo/pi_generator/
H A Dpi_generator.cc45 int px = x * ctx->width; local
47 uint32_t color = ctx->data[ctx->width * py + px];
61 ctx->data[ctx->width * py + px] = color | kOpaqueColorMask;
/external/chromium_org/native_client_sdk/src/examples/demo/voronoi/
H A Dvoronoi.cc89 Vec2(float px, float py) { argument
90 x = px;
93 void Set(float px, float py) { argument
94 x = px;
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/voronoi/
H A Dvoronoi.cc83 Vec2(float px, float py) { argument
84 x = px;
87 void Set(float px, float py) { argument
88 x = px;
/external/chromium_org/ppapi/examples/ime/
H A Dime.cc366 int px = font_.MeasureSimpleText(str); local
367 pp::Rect caret(area_.x() + px, area_.y(), 0, area_.height() + 2);
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatRect.h138 bool contains(float px, float py) const argument
140 return px >= x() && px <= maxX() && py >= y() && py <= maxY();
H A DIntRect.h127 // Equivalent to checking if the rect contains a 1x1 rect below and to the right of (px,py).
128 bool contains(int px, int py) const argument
129 { return px >= x() && px < maxX() && py >= y() && py < maxY(); }
H A DLayoutRect.h141 // Equivalent to checking if the rect contains a 1x1 rect below and to the right of (px,py).
142 bool contains(LayoutUnit px, LayoutUnit py) const argument
143 { return px >= x() && px < maxX() && py >= y() && py < maxY(); }
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTransformOperations.cpp113 static void findCandidatesInPlane(double px, double py, double nz, double* candidates, int* numCandidates) argument
116 double phi = atan2(px, py);
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/icu/source/common/
H A Drbbiscan.cpp75 icu::RBBISetTableEl *px = (icu::RBBISetTableEl *)p; local
76 delete px->key;
77 // Note: px->val is owned by the linked list "fSetsListHead" in scanner.
79 uprv_free(px);
H A Drbbistbl.cpp32 icu::RBBISymbolTableEntry *px = (icu::RBBISymbolTableEntry *)p; local
33 delete px;
H A Drbbitblb.cpp620 int32_t px; local
621 for (px=0; px<T->fPositions->size(); px++) {
622 p = (RBBINode *)T->fPositions->elementAt(px);
H A Duarrsort.c170 void *px, void *pw) {
176 doInsertionSort(array+start*itemSize, limit-start, itemSize, cmp, context, px);
184 uprv_memcpy(px, array+((start+limit)/2)*itemSize, itemSize);
188 cmp(context, array+left*itemSize, px)<0
193 cmp(context, px, array+(right-1)*itemSize)<0
216 subQuickSort(array, start, right, itemSize, cmp, context, px, pw);
224 subQuickSort(array, left, limit, itemSize, cmp, context, px, pw);
168 subQuickSort(char *array, int32_t start, int32_t limit, int32_t itemSize, UComparator *cmp, const void *context, void *px, void *pw) argument
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/libaddressinput/src/java/testlibs/
H A Dhttpcore-4.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/message/ ...
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dyuvframegenerator.cc130 int x, y, pw, ph, px, py; local
133 px = n % (w * 2);
135 if (px >= w) px = w + w - px - 1;
139 for (x = px - pw; x < px + pw; x++) {
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_rast_priv.h224 unsigned px, py, pixel_offset; local
235 px = x % TILE_SIZE;
237 pixel_offset = tile_pixel_offset(px, py, 0);
H A Dlp_rast_tri_tmp.h117 int px = x + ix; local
130 TAG(do_block_4)(task, tri, plane, px, py, cx);
139 int px = x + ix; local
145 block_full_4(task, tri, px, py);
220 int px = x + ix; local
232 TAG(do_block_16)(task, tri, plane, px, py, cx);
241 int px = x + ix; local
247 block_full_16(task, tri, px, py);
308 int px = x + ix; local
316 - plane[j].dcdx * px
[all...]
H A Dlp_setup_tri.c592 unsigned px = bbox->x0 & 63 & ~3; local
603 assert(px + 4 <= TILE_SIZE);
608 lp_rast_arg_triangle_contained(tri, px, py) );
621 px = MIN2(px, TILE_SIZE - 16);
624 assert(px + 16 <= TILE_SIZE);
630 lp_rast_arg_triangle_contained(tri, px, py) );
635 px = MIN2(px, TILE_SIZE - 16);
638 assert(px
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dpath.c364 VGfloat sx, sy, px, py, ox, oy; local
388 sx = sy = px = py = ox = oy = 0.f;
419 px = x0;
431 px = x0;
442 px = x0;
453 px = x0;
474 px = x2;
497 px = x1;
522 x1 = 2*ox-px;
527 px
952 VGfloat px, py, ox, oy, sx, sy; member in struct:path_iter_data
1233 VGfloat sx, sy, px, py, ox, oy; local
[all...]
H A Dpath.h46 VGfloat sx, sy, ox, oy, px, py; member in struct:path_for_each_data
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_pixel_bitmap.c186 GLint px, py; local
246 for (px = 0; px < width; px += DX) {
248 int w = MIN2(DX, width - px);
264 -orig_dstx + (dstx + px),
281 dstx + px,
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dintel_pixel_bitmap.c186 GLint px, py; local
246 for (px = 0; px < width; px += DX) {
248 int w = MIN2(DX, width - px);
264 -orig_dstx + (dstx + px),
281 dstx + px,

Completed in 2368 milliseconds

123456