HomeSort by relevance Sort by last modified time
    Searched defs:origin (Results 51 - 75 of 426) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/skqp/src/core/
SkColorSpaceXformCanvas.cpp 314 SkIPoint* origin = nullptr; variable
315 void* addr = fTarget->accessTopLayerPixels(&info, &rowBytes, origin);
  /external/skqp/src/gpu/
GrProgramDesc.cpp 185 GrSurfaceOrigin origin; local
187 origin = pipeline.dstTextureProxy()->origin();
188 originIfDstTexture = &origin;
  /external/tcpdump/
print-dvmrp.c 167 register uint32_t mask, origin; local
198 origin = 0;
201 origin = origin << 8 | *bp++;
204 origin <<= 8;
210 ND_PRINT((ndo, "\n\t %s metric %d", intoa(htonl(origin)),
  /external/vulkan-validation-layers/demos/smoke/
Simulation.h 60 glm::vec3 origin; member in struct:Path::Subpath
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
ScrollViewButtonsAndLabelsTest.java 48 int origin[] = {0, 0}; local
49 mScrollView.getLocationOnScreen(origin);
50 mScreenTop = origin[1];
51 mScreenBottom = origin[1] + mScrollView.getHeight();
181 int origin[] = {0, 0}; local
182 mScrollView.getLocationOnScreen(origin);
191 if (buttonLoc[1] - origin[1] > screenHeight) {
200 int origin[] = {0, 0}; local
201 mScrollView.getLocationOnScreen(origin);
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreSecretKeyFactorySpi.java 90 @KeyProperties.OriginEnum int origin; local
103 origin = KeyProperties.Origin.fromKeymaster(
107 origin = KeyProperties.Origin.fromKeymaster(
110 throw new ProviderException("Key origin not available");
197 origin,
  /build/kati/
eval.cc 69 VarOrigin origin = local
82 SimpleVar* sv = new SimpleVar(origin);
89 rhs = new RecursiveVar(rhs_v, origin, orig_rhs);
94 rhs = new RecursiveVar(rhs_v, origin, orig_rhs);
108 rhs = new RecursiveVar(rhs_v, origin, orig_rhs);
  /external/ImageMagick/coders/
tga.c 311 SetImageArtifact(image,"tga:image-origin","TopRight");
313 SetImageArtifact(image,"tga:image-origin","BottomRight");
318 SetImageArtifact(image,"tga:image-origin","TopLeft");
320 SetImageArtifact(image,"tga:image-origin","BottomLeft");
841 value=GetImageArtifact(image,"tga:image-origin");
845 origin;
847 origin=(OrientationType) ParseCommandOption(MagickOrientationOptions,
849 if (origin == BottomRightOrientation || origin == TopRightOrientation)
851 if (origin == TopLeftOrientation || origin == TopRightOrientation
839 origin; local
    [all...]
  /external/curl/src/
tool_formparse.c 44 curl_off_t origin; /* File read origin offset. */ member in struct:__anon17404
422 if(fseek(stdin, (long) (offset + sip->origin), SEEK_SET))
441 * origin for rewind and do not buffer data. Else read to EOF and keep in
463 sip->origin = ftell(stdin);
464 if(fd >= 0 && sip->origin >= 0 && !fstat(fd, &sbuf) &&
469 sip->size = sbuf.st_size - sip->origin;
476 sip->origin = 0;
  /external/dexmaker/dexmaker-mockito-inline/src/main/java/com/android/dx/mockito/inline/
MockMethodAdvice.java 34 * Try to invoke the method {@code origin} on {@code instance}.
36 * @param origin method to invoke
44 private static Object tryInvoke(Method origin, Object instance, Object[] arguments)
47 return origin.invoke(instance, arguments);
172 Method origin = Class.forName(methodComponents.group(1)).getDeclaredMethod( local
175 if (isOverridden(instance, origin)) {
178 return origin;
186 * @param origin method that contains the hook
193 public Callable<?> handle(Object instance, Method origin, Object[] arguments) throws Throwable {
199 return new ReturnValueWrapper(interceptor.interceptEntryHook(instance, origin, arguments
257 private final Method origin; field in class:MockMethodAdvice.SuperMethodCall
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/
InternetDomainNameTest.java 300 InternetDomainName origin = InternetDomainName.from("foo.com"); local
301 InternetDomainName parent = origin.parent();
  /external/guava/guava-tests/test/com/google/common/net/
InternetDomainNameTest.java 302 InternetDomainName origin = InternetDomainName.from("foo.com"); local
303 InternetDomainName parent = origin.parent();
  /external/icu/icu4c/source/i18n/
islamcal.cpp 368 * from the Hijri epoch, origin 0.
388 * from the Hijri epoch, origin 0.
413 * @param month The month in question, origin 0 from the Hijri epoch
424 UDate origin = HIJRA_MILLIS local
428 double age = moonAge(origin, status);
436 origin -= kOneDay;
437 age = moonAge(origin, status);
446 origin += kOneDay;
447 age = moonAge(origin, status);
453 start = (int32_t)ClockMath::floorDivide((origin - HIJRA_MILLIS), (double)kOneDay) + 1
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
ArrayType.java 57 * The origin of a pair of array brackets [].
59 public enum Origin {
73 private Origin origin; field in class:ArrayType
76 public ArrayType(Type componentType, Origin origin, NodeList<AnnotationExpr> annotations) {
77 this(null, componentType, origin, annotations);
81 this(type, Origin.TYPE, nodeList(annotations));
88 public ArrayType(TokenRange tokenRange, Type componentType, Origin origin, NodeList<AnnotationExpr> annotations)
177 private Origin origin; field in class:ArrayType.ArrayBracketPair
    [all...]
  /external/libchrome/base/debug/
activity_tracker_unittest.cc 265 char origin; local
266 global->RecordException(&origin, 42);
270 EXPECT_EQ(reinterpret_cast<uintptr_t>(&origin),
316 const void* origin,
320 origin_(origin),
  /external/libmojo/ui/gfx/geometry/
rect.h 44 constexpr Rect(const Point& origin, const Size& size)
45 : origin_(origin),
46 size_(GetClampedValue(origin.x(), size.width()),
47 GetClampedValue(origin.y(), size.height())) {}
83 constexpr const Point& origin() const { return origin_; } function in class:gfx::Rect
84 void set_origin(const Point& origin) {
85 origin_ = origin;
140 // A rect is less than another rect if its origin is less than
141 // the other rect's origin. If the origins are equal, then the
142 // shortest rect is less than the other. If the origin and th
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/shader/
toy_compiler_asm.c 31 #define CG_REG_NUM(origin) ((origin) >> CG_REG_SHIFT)
46 unsigned origin; /* (RegNum << 5 | SubRegNumInBytes) */ member in struct:codegen::codegen_dst
58 unsigned origin; /* (RegNum << 5 | SubRegNumInBytes) */ member in struct:codegen::codegen_src
430 src->origin == GEN6_ARF_NULL << CG_REG_SHIFT);
452 return cg->src[idx].origin;
462 return cg->src[0].origin;
467 return cg->src[1].origin;
473 const int offset = (int) src->origin;
483 assert(!(src->origin & 0xf))
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_graph.h 56 inline Node *getOrigin() const { return origin; }
63 Node *origin; member in class:nv50_ir::Graph::Edge
67 Edge *next[2]; // next edge outgoing/incident from/to origin/target
94 e->origin : e->target; }
191 return in->origin;
  /external/opencv/cxcore/include/
cxcore.hpp 160 int origin() const { return image ? image->origin : 0; } function in class:CvImage
  /external/skia/include/core/
SkBitmap.h 50 kUnknown_SkAlphaType, and with a width and height of zero. SkPixelRef origin is
254 /** Returns pixel address, the base address corresponding to the pixel origin.
362 @return integral rectangle from origin to width() and height()
372 /** Returns the bounds of this bitmap, offset by its SkPixelRef origin.
377 SkIPoint origin = this->pixelRefOrigin(); local
378 return SkIRect::MakeXYWH(origin.x(), origin.y(), this->width(), this->height());
646 Sets SkPixelRef origin to (0, 0).
713 /** Returns origin of pixels within SkPixelRef. SkBitmap bounds is always contained
717 The returned origin added to SkBitmap dimensions equals or is smaller than th
    [all...]
  /external/skia/src/core/
SkBitmapCache.cpp 39 SkIPoint origin = bm.pixelRefOrigin(); local
40 return SkIRect::MakeXYWH(origin.fX, origin.fY, bm.width(), bm.height());
SkDevice.h 46 * such as those associated with saveLayer may have a non-zero origin.
50 const SkIPoint& origin = this->getOrigin(); local
51 bounds->setXYWH(origin.x(), origin.y(), this->width(), this->height());
92 * Return the device's origin: its offset in device coordinates from
93 * the default origin in its canvas' matrix/clip
  /external/skia/src/gpu/
SkGr.cpp 122 desc.fOrigin = baseProxy->origin();
183 SkIPoint origin = bm->pixelRefOrigin(); local
184 SkIRect subset = SkIRect::MakeXYWH(origin.fX, origin.fY, bm->width(), bm->height());
  /external/skia/src/image/
SkImage_Raster.cpp 332 SkIPoint origin = fBitmap.pixelRefOrigin(); local
334 bitmap->setPixelRef(sk_ref_sp(fBitmap.pixelRef()), origin.x(), origin.y());
SkSurface_Gpu.cpp 84 GrSurfaceOrigin origin = fDevice->accessRenderTargetContext()->origin(); local
88 origin, &this->props());
110 SkASSERT(rtc->origin() == rtc->asSurfaceProxy()->origin());
178 rtc->origin(), rtc->width(), rtc->height(),
219 data.origin() == rtc->origin() && data.width() == rtc->width() &&
280 GrSurfaceOrigin origin, const SkSurfaceProps* props,
296 ctx, budgeted, info, sampleCount, origin, props, mipMapped
    [all...]

Completed in 479 milliseconds

1 23 4 5 6 7 8 91011>>