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

1 2

  /prebuilts/go/darwin-x86/test/bench/shootout/
k-nucleotide.go 70 func (kn kNucArray) Len() int { return len(kn) }
71 func (kn kNucArray) Swap(i, j int) { kn[i], kn[j] = kn[j], kn[i] }
72 func (kn kNucArray) Less(i, j int) bool {
73 if kn[i].count == kn[j].count
    [all...]
k-nucleotide-parallel.go 69 func (kn kNucArray) Len() int { return len(kn) }
70 func (kn kNucArray) Swap(i, j int) { kn[i], kn[j] = kn[j], kn[i] }
71 func (kn kNucArray) Less(i, j int) bool {
72 if kn[i].count == kn[j].count
    [all...]
  /prebuilts/go/linux-x86/test/bench/shootout/
k-nucleotide.go 70 func (kn kNucArray) Len() int { return len(kn) }
71 func (kn kNucArray) Swap(i, j int) { kn[i], kn[j] = kn[j], kn[i] }
72 func (kn kNucArray) Less(i, j int) bool {
73 if kn[i].count == kn[j].count
    [all...]
k-nucleotide-parallel.go 69 func (kn kNucArray) Len() int { return len(kn) }
70 func (kn kNucArray) Swap(i, j int) { kn[i], kn[j] = kn[j], kn[i] }
71 func (kn kNucArray) Less(i, j int) bool {
72 if kn[i].count == kn[j].count
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/
test_key.py 67 kn = self.bucket.new_key("k")
68 ks = kn.get_contents_as_string().decode('utf-8')
77 kn = self.bucket.new_key("k")
78 ks = kn.get_contents_as_string().decode('utf-8')
90 kn = self.bucket.new_key("k")
91 ks = kn.get_contents_as_string().decode('utf-8')
100 kn = self.bucket.new_key("k")
101 ks = kn.get_contents_as_string().decode('utf-8')
111 kn = self.bucket.new_key("k")
112 ks = kn.get_contents_as_string().decode('utf-8'
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
CollationKeyTest.java 24 CollationKey kn = c.getCollationKey("this"); local
25 testEHCS(k1, k2, kn);
  /external/netperf/src/
netcpu_kstat.c 77 kstat_named_t *kn; local
147 kn = kstat_data_lookup(ks, "ncpus");
148 if (kn && kn->value.ui32 > lib_num_loc_cpus) {
  /ndk/sources/host-tools/make-3.81/
getloadavg.c 520 kstat_named_t *kn;
532 kn = kstat_data_lookup (ksp, "avenrun_1min");
533 if (kn == 0)
541 loadavg[elem++] = (double) kn->value.ul/FSCALE;
545 kn = kstat_data_lookup (ksp, "avenrun_5min");
546 if (kn != 0)
548 loadavg[elem++] = (double) kn->value.ul/FSCALE;
552 kn = kstat_data_lookup (ksp, "avenrun_15min");
553 if (kn != 0)
554 loadavg[elem++] = (double) kn->value.ul/FSCALE
518 kstat_named_t *kn; local
    [all...]
  /external/hyphenation-patterns/
patterns.mk 39 kn \
Android.mk 41 kn/kn \
  /external/libvncserver/common/
d3des.c 79 unsigned long kn[32]; local
90 kn[m] = kn[n] = 0L;
102 if( pcr[pc2[j]] ) kn[m] |= bigbyte[j];
103 if( pcr[pc2[j+24]] ) kn[n] |= bigbyte[j];
106 cookey(kn);
  /external/wpa_supplicant_8/src/crypto/
des-internal.c 275 u32 i, j, l, m, n, kn[32]; local
291 kn[m] = kn[n] = 0L;
308 kn[m] |= bigbyte[j];
310 kn[n] |= bigbyte[j];
314 cookey(kn, keyout);
  /external/libvncserver/webclients/novnc/include/
des.js 137 var i, j, l, m, n, o, pc1m = [], pcr = [], kn = [],
149 kn[m] = kn[n] = 0;
162 kn[m] |= 1 << (23 - j);
165 kn[n] |= 1 << (23 - j);
172 raw0 = kn[rawi++];
173 raw1 = kn[rawi++];
  /external/wpa_supplicant_8/src/pae/
ieee802_1x_kay.c 72 ki1->kn == ki2->kn;
195 be_to_host32(body->kn));
1196 body->lkn = host_to_be32(participant->lki.kn);
1202 if (participant->oki.kn != participant->lki.kn &&
1203 participant->oki.kn != 0) {
1208 body->okn = host_to_be32(participant->oki.kn);
1293 ki.kn = ntohl(body->lkn);
    [all...]
ieee802_1x_kay.h 30 u32 kn; member in struct:ieee802_1x_mka_ki
ieee802_1x_kay_i.h 33 /* KN + Wrapper SAK */
390 u32 kn; member in struct:ieee802_1x_mka_dist_sak_body
  /external/icu/icu4c/source/data/coll/
colfiles.mk 60 kl.txt km.txt kn.txt ko.txt kok.txt\
  /external/opencv3/modules/core/src/
rand.cpp 330 static unsigned kn[128]; local
343 kn[0] = (unsigned)((dn/q)*m1);
344 kn[1] = 0;
355 kn[i+1] = (unsigned)((dn/tn)*m1);
372 if( (unsigned)std::abs(hz) < kn[iz] )
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/manage/
server.py 481 kn = None
483 kn = self._instance.key_name
484 return kn
  /external/icu/icu4c/source/common/
locmap.c 438 ILCID_POSIX_ELEMENT_ARRAY(0x044b, kn, kn_IN)
795 ILCID_POSIX_MAP(kn), /* kn Kannada 0x4b */
    [all...]
  /external/icu/icu4c/source/data/lang/
resfiles.mk 92 kn.txt ko.txt kok.txt ks.txt ksb.txt\
  /external/icu/icu4c/source/data/region/
resfiles.mk 92 kn.txt ko.txt kok.txt ks.txt ksb.txt\
  /external/icu/icu4c/source/data/unit/
resfiles.mk 90 kkj.txt kl.txt kln.txt km.txt kn.txt\
  /external/icu/icu4c/source/data/zone/
resfiles.mk 92 km.txt kn.txt ko.txt ko_KP.txt kok.txt\
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertyFactory.java 501 for (int k = 0, kn = firstName.length(); k < kn; k++) {
    [all...]

Completed in 1204 milliseconds

1 2