HomeSort by relevance Sort by last modified time
    Searched refs:kr (Results 1 - 25 of 41) sorted by null

1 2

  /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)
mach_port_util.cc 46 kern_return_t kr = local
54 if (kr != KERN_SUCCESS)
57 return kr;
66 kern_return_t kr = local
69 if (kr != KERN_SUCCESS)
85 kern_return_t kr = local
87 if (kr != KERN_SUCCESS) {
96 kr = mach_port_set_attributes(task_port, endpoint, MACH_PORT_LIMITS_INFO,
99 if (kr != KERN_SUCCESS) {
109 kr
    [all...]
  /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 
  /system/core/fastboot/
usb_osx.cpp 86 IOReturn kr; local
105 kr = (*dev)->CreateInterfaceIterator(dev, &request, &iterator);
107 if (kr != 0) {
108 ERR("Couldn't create a device interface iterator: (%08x)\n", kr);
114 kr = IOCreatePlugInInterfaceForService(
124 if ((kr != 0) || (!plugInInterface)) {
125 WARN("Unable to create plugin (%08x)\n", kr);
162 kr = (*interface)->USBInterfaceOpen(interface);
164 if (kr != 0) {
165 WARN("Could not open interface: (%08x)\n", kr);
270 kern_return_t kr; local
    [all...]
  /external/libchrome/base/memory/
shared_memory_handle_mac.cc 21 kern_return_t kr = mach_make_memory_entry_64( local
28 if (kr != KERN_SUCCESS) {
65 kern_return_t kr = mach_port_mod_refs(mach_task_self(), memory_object_,
67 DCHECK_EQ(kr, KERN_SUCCESS);
109 kern_return_t kr = mach_vm_map( local
119 return kr == KERN_SUCCESS;
126 kern_return_t kr = mach_port_deallocate(mach_task_self(), memory_object_);
127 if (kr != KERN_SUCCESS)
128 DPLOG(ERROR) << "Error deallocating mach port: " << kr;
shared_memory_mac_unittest.cc 43 kern_return_t kr = local
46 if (kr != KERN_SUCCESS) {
47 MACH_LOG(ERROR, kr) << "Failed to get region info.";
87 kern_return_t kr = bootstrap_check_in(bootstrap_port, service_name, &port); local
88 MACH_CHECK(kr == KERN_SUCCESS, kr) << "BecomeMachServer";
95 kern_return_t kr = local
97 MACH_CHECK(kr == KERN_SUCCESS, kr) << "LookupServer";
103 kern_return_t kr local
118 kern_return_t kr = local
149 int kr = mach_msg(send_hdr, \/\/ message buffer local
183 kern_return_t kr = mach_port_names(mach_task_self(), &name_array, local
    [all...]
shared_memory_mac.cc 47 kern_return_t kr = mach_vm_map( local
51 if (kr != KERN_SUCCESS)
59 kern_return_t kr = mach_make_memory_entry_64( local
63 if (kr != KERN_SUCCESS)
  /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);
  /prebuilts/tools/common/m2/repository/kr/motd/maven/os-maven-plugin/1.4.0.Final/
os-maven-plugin-1.4.0.Final.jar 
  /system/core/adb/client/
usb_osx.cpp 121 kern_return_t kr = IOServiceGetMatchingServices(kIOMasterPortDefault, matchingDict, &iter); local
122 if (kr != KERN_SUCCESS) {
135 kern_return_t kr; local
153 kr = IOCreatePlugInInterfaceForService(usbInterface,
158 if ((kIOReturnSuccess != kr) || (!plugInInterface)) {
159 LOG(ERROR) << "Unable to create an interface plug-in (" << std::hex << kr << ")"; local
174 kr = (*iface)->GetInterfaceClass(iface, &if_class);
175 kr = (*iface)->GetInterfaceSubClass(iface, &subclass);
176 kr = (*iface)->GetInterfaceProtocol(iface, &protocol);
189 kr = (*iface)->GetDevice(iface, &usbDevice)
191 LOG(ERROR) << "Couldn't grab device from interface (" << std::hex << kr << ")"; local
206 LOG(ERROR) << "Unable to create a device plug-in (" << std::hex << kr << ")"; local
332 IOReturn kr; local
340 LOG(ERROR) << "Could not open interface: " << std::hex << kr; local
347 LOG(ERROR) << "Unable to get number of endpoints: " << std::hex << kr; local
383 << std::hex << kr; local
    [all...]
  /external/libchrome/base/process/
process_metrics_mac.cc 45 kern_return_t kr = task_info(task, local
50 return kr == KERN_SUCCESS;
166 kern_return_t kr = mach_vm_region(task, local
173 if (kr == KERN_INVALID_ADDRESS) {
176 } else if (kr != KERN_SUCCESS) {
177 MACH_DLOG(ERROR, kr) << "mach_vm_region";
265 kern_return_t kr = task_info(task, local
269 if (kr != KERN_SUCCESS) {
320 kern_return_t kr = task_info(task, local
324 if (kr != KERN_SUCCESS)
360 kern_return_t kr = host_statistics(host.get(), HOST_VM_INFO, local
    [all...]
  /external/libchrome/base/time/
time_mac.cc 37 int kr = sysctl(mib, arraysize(mib), &boottime, &size, nullptr, 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/openssh/regress/unittests/sshkey/
test_sshkey.c 179 struct sshkey *k1, *k2, *k3, *k4, *kr, *kd, *kf; local
293 ASSERT_INT_EQ(sshkey_generate(KEY_RSA, 767, &kr),
295 ASSERT_INT_EQ(sshkey_generate(KEY_RSA, 1024, &kr), 0);
296 ASSERT_PTR_NE(kr, NULL);
297 ASSERT_PTR_NE(kr->rsa, NULL);
298 ASSERT_PTR_NE(kr->rsa->n, NULL);
299 ASSERT_PTR_NE(kr->rsa->e, NULL);
300 ASSERT_PTR_NE(kr->rsa->p, NULL);
301 ASSERT_INT_EQ(BN_num_bits(kr->rsa->n), 1024);
331 ASSERT_INT_EQ(sshkey_demote(kr, &k1), 0)
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/gradle/osdetector-gradle-plugin/1.4.0/
osdetector-gradle-plugin-1.4.0.jar 
  /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);
  /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;
  /prebuilts/tools/common/m2/repository/com/google/gradle/osdetector-gradle-plugin/1.2.1/
osdetector-gradle-plugin-1.2.1.jar 
  /external/libnl/doc/stylesheets/
pygments.css 28 .highlight .kr { color: #AA22FF; font-weight: bold } /* Keyword.Reserved */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
_codecs_iso2022.c 544 /* kr */
573 IMPORT_MAP(kr, cp949, &cp949_encmap, NULL) ||
574 IMPORT_MAP(kr, ksx1001, NULL, &ksx1001_decmap)))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
_codecs_iso2022.c 544 /* kr */
573 IMPORT_MAP(kr, cp949, &cp949_encmap, NULL) ||
574 IMPORT_MAP(kr, ksx1001, NULL, &ksx1001_decmap)))
    [all...]
  /external/python/cpython2/Modules/cjkcodecs/
_codecs_iso2022.c 544 /* kr */
573 IMPORT_MAP(kr, cp949, &cp949_encmap, NULL) ||
574 IMPORT_MAP(kr, ksx1001, NULL, &ksx1001_decmap)))
1070 CONFIGDEF(kr, 0)
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c 236 int kr, kc; \
239 kr = br - tr; \
241 CHECK_BETTER(second, tr + kr, tc + 2 * kc); \
242 CHECK_BETTER(second, tr + 2 * kr, tc + kc); \
254 kr = br - tr; \
255 CHECK_BETTER(second, tr + 2 * kr, tc + hstep); \
256 CHECK_BETTER(second, tr + 2 * kr, tc - hstep); \
259 case 2: CHECK_BETTER(second, tr + kr, tc + hstep); break; \
261 case 3: CHECK_BETTER(second, tr + kr, tc - hstep); break; \
278 kr = br - tr;
668 int kr, kc; local
    [all...]
  /external/libopus/celt/
bands.c 408 int kl, kr; local
428 kr = celt_ilog2(Er)>>1;
432 t = VSHR32(Er, (kr-7)<<1);
438 if (kr < 7)
439 kr = 7;
449 Y[j] = EXTRACT16(PSHR32(MULT16_16(rgain, ADD16(l,r)), kr+1));
    [all...]
  /external/v8/src/base/platform/
time.cc 36 kern_return_t kr = thread_info( local
41 CHECK(kr == KERN_SUCCESS);

Completed in 773 milliseconds

1 2