HomeSort by relevance Sort by last modified time
    Searched defs:kr (Results 1 - 18 of 18) sorted by null

  /external/libchrome/base/mac/
scoped_mach_port.cc 15 kern_return_t kr = mach_port_deallocate(mach_task_self(), port); local
16 MACH_LOG_IF(ERROR, kr != KERN_SUCCESS, kr)
22 kern_return_t kr = local
24 MACH_LOG_IF(ERROR, kr != KERN_SUCCESS, kr)
30 kern_return_t kr = local
32 MACH_LOG_IF(ERROR, kr != KERN_SUCCESS, kr)
  /external/google-breakpad/src/client/mac/handler/testcases/
DynamicImagesTests.cc 53 kern_return_t kr; local
61 kr = google_breakpad::ReadTaskMemory(mach_task_self(),
66 CPTAssert(kr == KERN_SUCCESS);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyRepTest.java 69 KeyRepChild kr = new KeyRepChild(KeyRep.Type.SECRET, "", "", new byte[] {}); local
71 kr.readResolve();
76 kr = new KeyRepChild(KeyRep.Type.SECRET, "", "X.509", new byte[] {});
78 kr.readResolve();
83 kr = new KeyRepChild(KeyRep.Type.SECRET, "", "RAW", new byte[] {});
85 kr.readResolve();
92 KeyRepChild kr = new KeyRepChild(KeyRep.Type.PUBLIC, "", "", new byte[] {}); local
94 kr.readResolve();
99 kr = new KeyRepChild(KeyRep.Type.PUBLIC, "", "RAW", new byte[] {});
101 kr.readResolve()
115 KeyRepChild kr = new KeyRepChild(KeyRep.Type.PRIVATE, "", "", new byte[] {}); local
139 KeyRepChild kr = new KeyRepChild(KeyRep.Type.PUBLIC, algorithm, "X.509", local
151 KeyRepChild kr = new KeyRepChild(KeyRep.Type.PRIVATE, algorithm, "PKCS#8", local
    [all...]
  /prebuilts/tools/common/m2/repository/kr/motd/maven/os-maven-plugin/1.2.3.Final/
os-maven-plugin-1.2.3.Final.jar 
  /prebuilts/tools/common/m2/repository/kr/motd/maven/os-maven-plugin/1.4.0.Final/
os-maven-plugin-1.4.0.Final.jar 
  /external/libchrome/base/time/
time_mac.cc 37 int kr = sysctl(mib, arraysize(mib), &boottime, &size, NULL, 0); local
38 DCHECK_EQ(KERN_SUCCESS, kr);
51 kern_return_t kr = mach_timebase_info(&timebase_info);
52 MACH_DCHECK(kr == KERN_SUCCESS, kr) << "mach_timebase_info";
87 kern_return_t kr = thread_info(
92 MACH_DCHECK(kr == KERN_SUCCESS, kr) << "thread_info";
  /external/libchrome/base/process/
process_metrics_mac.cc 45 kern_return_t kr = task_info(task, local
50 return kr == KERN_SUCCESS;
163 kern_return_t kr = mach_vm_region(task, local
170 if (kr == KERN_INVALID_ADDRESS) {
173 } else if (kr != KERN_SUCCESS) {
174 MACH_DLOG(ERROR, kr) << "mach_vm_region";
262 kern_return_t kr = task_info(task, local
266 if (kr != KERN_SUCCESS) {
317 kern_return_t kr = task_info(task, local
321 if (kr != KERN_SUCCESS)
357 kern_return_t kr = host_statistics(host.get(), HOST_VM_INFO, local
    [all...]
  /external/opencv/cvaux/src/
cvface.cpp 211 int kr = 0;//right eye was find local
252 kr = 1;
257 if ( (im + jl + kr) )
259 Error = Data.Error/(im + jl + kr);
  /system/core/fastboot/
usb_osx.cpp 86 IOReturn kr; local
113 kr = (*dev)->CreateInterfaceIterator(dev, &request, &iterator);
115 if (kr != 0) {
116 ERR("Couldn't create a device interface iterator: (%08x)\n", kr);
122 kr = IOCreatePlugInInterfaceForService(
132 if ((kr != 0) || (!plugInInterface)) {
133 WARN("Unable to create plugin (%08x)\n", kr);
170 kr = (*interface)->USBInterfaceOpen(interface);
172 if (kr != 0) {
173 WARN("Could not open interface: (%08x)\n", kr);
278 kern_return_t kr; local
    [all...]
  /system/core/adb/
usb_osx.cpp 109 kern_return_t kr = IOServiceGetMatchingServices(kIOMasterPortDefault, matchingDict, &iter); local
110 if (kr != KERN_SUCCESS) {
123 kern_return_t kr; local
141 kr = IOCreatePlugInInterfaceForService(usbInterface,
146 if ((kIOReturnSuccess != kr) || (!plugInInterface)) {
147 LOG(ERROR) << "Unable to create an interface plug-in (" << std::hex << kr << ")"; local
162 kr = (*iface)->GetInterfaceClass(iface, &if_class);
163 kr = (*iface)->GetInterfaceSubClass(iface, &subclass);
164 kr = (*iface)->GetInterfaceProtocol(iface, &protocol);
177 kr = (*iface)->GetDevice(iface, &usbDevice)
179 LOG(ERROR) << "Couldn't grab device from interface (" << std::hex << kr << ")"; local
193 LOG(ERROR) << "Unable to create a device plug-in (" << std::hex << kr << ")"; local
314 IOReturn kr; local
322 LOG(ERROR) << "Could not open interface: " << std::hex << kr; local
329 LOG(ERROR) << "Unable to get number of endpoints: " << std::hex << kr; local
365 << std::hex << kr; local
    [all...]
  /external/opencv/cv/src/
cvundistort.cpp 68 float kr = 1 + ((k3*r2 + k2)*r2 + k1)*r2; local
69 float _x = fx*(x*kr + p1*_2xy + p2*(r2 + 2*x2)) + x0;
70 float _y = fy*(y*kr + p1*(r2 + 2*y2) + p2*_2xy) + y0;
247 double kr = 1 + ((k3*r2 + k2)*r2 + k1)*r2; local
248 double _x = fx*(x*kr + p1*_2xy + p2*(r2 + 2*x2)) + x0;
249 double _y = fy*(y*kr + p1*(r2 + 2*y2) + p2*_2xy) + y0;
358 double kr = 1 + ((k3*r2 + k2)*r2 + k1)*r2; local
359 double u = fx*(x*kr + p1*_2xy + p2*(r2 + 2*x2)) + u0;
360 double v = fy*(y*kr + p1*(r2 + 2*y2) + p2*_2xy) + v0;
  /external/v8/src/base/platform/
time.cc 36 kern_return_t kr = thread_info( local
41 CHECK(kr == KERN_SUCCESS);
  /external/libopus/celt/
bands.c 398 int kl, kr; local
419 kr = celt_ilog2(Er)>>1;
423 t = VSHR32(Er, (kr-7)<<1);
429 if (kr < 7)
430 kr = 7;
440 Y[j] = EXTRACT16(PSHR32(MULT16_16(rgain, ADD16(l,r)), kr+1));
    [all...]
  /external/opencv3/modules/imgproc/src/
undistort.cpp 144 double kr = (1 + ((k3*r2 + k2)*r2 + k1)*r2)/(1 + ((k6*r2 + k5)*r2 + k4)*r2); local
145 double u = fx*(x*kr + p1*_2xy + p2*(r2 + 2*x2) + s1*r2+s2*r2*r2) + u0;
146 double v = fy*(y*kr + p1*(r2 + 2*y2) + p2*_2xy + s3*r2+s4*r2*r2) + v0;
558 double kr = 1 + ((k3*r2 + k2)*r2 + k1)*r2/(1 + ((k6*r2 + k5)*r2 + k4)*r2); local
559 double u = fx*(q.x*kr + p1*_2xy + p2*(r2 + 2*x2) + s1*r2+ s2*r2*r2) + cx;
560 double v = fy*(q.y*kr + p1*(r2 + 2*y2) + p2*_2xy + s3*r2+ s4*r2*r2) + cy;
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c 222 int kr, kc; \
225 kr = br - tr; \
227 CHECK_BETTER(second, tr + kr, tc + 2 * kc); \
228 CHECK_BETTER(second, tr + 2 * kr, tc + kc); \
244 kr = br - tr; \
245 CHECK_BETTER(second, tr + 2 * kr, tc + hstep); \
246 CHECK_BETTER(second, tr + 2 * kr, tc - hstep); \
250 CHECK_BETTER(second, tr + kr, tc + hstep); \
254 CHECK_BETTER(second, tr + kr, tc - hstep); \
272 kr = br - tr;
681 int kr, kc; local
    [all...]
  /external/valgrind/coregrind/m_aspacemgr/
aspacemgr-linux.c 3574 kern_return_t kr; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
nucnvtst.c 4163 UConverter* kr=NULL, *kr1=NULL; local
    [all...]
  /external/chromium-trace/catapult/tracing/third_party/d3/
d3.min.js     [all...]

Completed in 1527 milliseconds