Searched defs:area (Results 1 - 8 of 8) sorted by path

/frameworks/av/services/camera/libcameraservice/camera2/
H A DParameters.cpp2109 const char* area = areasStr.string() + areaStart; local
2114 vals[i] = strtol(area, &numEnd, 10);
2115 if (errno || numEnd == area) return BAD_VALUE;
2116 area = numEnd + 1;
2128 // Definition of valid area can be found in
2142 // fixed focus can only set (0,0,0,0,0) focus area
2314 // chosen to maximize its area on the sensor
2405 // centering the zoom area within the active area
/frameworks/compile/mclinker/include/mcld/Support/
H A DHandleToArea.h43 MemoryArea* area; member in struct:mcld::HandleToArea::Bucket
61 : handle(pHandle), area(pArea) { }
65 MemoryArea* area; member in struct:mcld::HandleToArea::Result
71 : handle(pHandle), area(pArea) { }
75 const MemoryArea* area; member in struct:mcld::HandleToArea::ConstResult
/frameworks/compile/mclinker/unittests/
H A DFragmentRefTest.cpp49 MemoryArea* area = areaFactory->produce(path, FileHandle::ReadWrite); local
51 MemoryRegion* region = area->request(0, 4096);
H A DMCRegionFragmentTest.cpp49 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); local
51 MemoryRegion* region = area->request(0, 4096);
64 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); local
66 MemoryRegion* region = area->request(0, 4096);
H A DMemoryAreaTest.cpp54 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly); local
55 MemoryRegion* region = area->request(3, 2);
58 area->release(region);
59 AreaFactory->destruct(area);
68 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly); local
69 ASSERT_TRUE(area->handler()->isOpened());
70 ASSERT_TRUE(area->handler()->isGood());
71 MemoryRegion* region = area->request(3, 4);
76 area->release(region);
77 area
96 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadOnly) ; local
112 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadWrite); local
140 MemoryArea* area = AreaFactory->produce(path, FileHandle::ReadWrite) ; local
[all...]
/frameworks/native/opengl/libagl/
H A Dcontext.h561 GGLcoord area() const { return m_area; } function in struct:android::gl::compute_iterators_t
H A Dprimitives.cpp258 const GGLcoord area = (m_area + TRI_HALF) >> TRI_FRACTION_BITS; local
260 // triangles with an area smaller than 1.0 are not smooth-shaded
263 if (abs(area) >= minArea) {
265 // factor for deltas/area:
267 // First compute the 1/area with full 32-bits precision,
269 d = gglRecipQNormalized(area, &q);
275 // We'll keep 16-bits of precision for deltas/area. So we need
698 // rho = sqrt( texelArea / area )
700 // lod = log2( texelArea / area ) / 2
701 // lod = (log2( texelArea ) - log2( area )) /
703 const GGLcoord area = abs(lerp.area()); local
[all...]
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsCbLocation.java88 * Returns the GSM location area code, or UMTS service area code.
89 * @return location area code, -1 if unknown, 0xffff max legal value
129 * Test whether this location is within the location area of the specified object.
131 * @param area the location area to compare with this location
132 * @return true if this location is contained within the specified location area
134 public boolean isInLocationArea(SmsCbLocation area) { argument
135 if (mCid != -1 && mCid != area.mCid) {
138 if (mLac != -1 && mLac != area
[all...]

Completed in 49 milliseconds