HomeSort by relevance Sort by last modified time
    Searched full:okey (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/libxml2/
dict.c 99 unsigned long okey; member in struct:_xmlDictEntry
632 unsigned long key, okey; local
679 okey = olddict[i].okey;
681 okey = xmlDictComputeKey(dict, olddict[i].name, olddict[i].len);
682 key = okey % dict->size;
687 dict->dict[key].okey = okey;
695 entry->okey = okey;
830 unsigned long key, okey, nbi = 0; local
970 unsigned long key, okey, nbi = 0; local
1078 unsigned long okey, key, nbi = 0; local
    [all...]
  /external/iproute2/ip/
link_vti.c 59 unsigned okey = 0; local
103 okey = *(__u32 *)RTA_DATA(vtiinfo[IFLA_VTI_OKEY]);
131 ikey = okey = uval;
146 } else if (!matches(*argv, "okey")) {
154 fprintf(stderr, "invalid value for \"okey\": \"%s\"; it should be an unsigned integer\n", *argv);
159 okey = uval;
190 addattr32(n, 1024, IFLA_VTI_OKEY, okey);
244 fprintf(f, "okey %s ", s2);
link_vti6.c 57 unsigned okey = 0; local
99 okey = rta_getattr_u32(vtiinfo[IFLA_VTI_OKEY]);
127 ikey = okey = uval;
142 } else if (!matches(*argv, "okey")) {
150 fprintf(stderr, "invalid value for \"okey\": \"%s\"; it should be an unsigned integer\n", *argv);
155 okey = uval;
187 addattr32(n, 1024, IFLA_VTI_OKEY, okey);
241 fprintf(f, "okey %s ", s2);
link_gre6.c 75 unsigned okey = 0; local
123 okey = rta_getattr_u32(greinfo[IFLA_GRE_OKEY]);
171 ikey = okey = uval;
187 } else if (!matches(*argv, "okey")) {
196 fprintf(stderr, "invalid value of \"okey\"\n");
201 okey = uval;
283 addattr32(n, 1024, IFLA_GRE_OKEY, okey);
381 fprintf(f, "okey %s ", s2);
link_gre.c 65 unsigned okey = 0; local
117 okey = rta_getattr_u32(greinfo[IFLA_GRE_OKEY]);
175 ikey = okey = uval;
191 } else if (!matches(*argv, "okey")) {
200 fprintf(stderr, "invalid value for \"okey\": \"%s\"; it should be an unsigned integer\n", *argv);
205 okey = uval;
309 if (!okey && IN_MULTICAST(ntohl(daddr))) {
310 okey = daddr;
319 addattr32(n, 1024, IFLA_GRE_OKEY, okey);
412 fprintf(f, "okey %s ", s2)
    [all...]
ip6tunnel.c 119 printf(" okey %u", ntohl(p->o_key));
244 } else if (strcmp(*argv, "okey") == 0) {
247 p->o_key = tnl_parse_key("okey", *argv);
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/text/
RbnfScannerProviderImpl.java 178 int oKey = keyIter.next();
179 while (oKey != CollationElementIterator.NULLORDER) {
184 while (oKey != CollationElementIterator.NULLORDER &&
185 CollationElementIterator.primaryOrder(oKey) == 0)
186 oKey = keyIter.next();
192 if (oKey == CollationElementIterator.NULLORDER) {
197 CollationElementIterator.primaryOrder(oKey)) {
200 oKey = keyIter.next();
211 if (oKey == CollationElementIterator.NULLORDER) {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/text/
RbnfScannerProviderImpl.java 180 int oKey = keyIter.next();
181 while (oKey != CollationElementIterator.NULLORDER) {
186 while (oKey != CollationElementIterator.NULLORDER &&
187 CollationElementIterator.primaryOrder(oKey) == 0)
188 oKey = keyIter.next();
194 if (oKey == CollationElementIterator.NULLORDER) {
199 CollationElementIterator.primaryOrder(oKey)) {
202 oKey = keyIter.next();
213 if (oKey == CollationElementIterator.NULLORDER) {
  /toolchain/binutils/binutils-2.25/libiberty/
fibheap.c 203 fibheapkey_t okey;
213 okey = node->key;
221 if (okey == key && okey != FIBHEAPKEY_MIN)
250 int okey = node->key;
252 return okey;
202 fibheapkey_t okey; local
249 int okey = node->key; local
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
sinit.go 612 if r.Op != OKEY {
613 Fatal("structlit: rhs not OKEY: %v", r)
680 if r.Op != OKEY {
681 Fatal("arraylit: rhs not OKEY: %v", r)
758 a := Nod(OSLICE, vstat, Nod(OKEY, nil, nil))
843 a = Nod(OAS, var_, Nod(OSLICE, vauto, Nod(OKEY, nil, nil)))
856 if r.Op != OKEY {
857 Fatal("slicelit: rhs not OKEY: %v", r)
914 if r.Op != OKEY {
915 Fatal("maplit: rhs not OKEY: %v", r
    [all...]
opnames.go 81 OKEY: "KEY",
syntax.go 262 OKEY // Left:Right (key:value in struct/array/map literal, or slice index pair)
287 OSLICE // Left[Right.Left : Right.Right] (Left is untypechecked or slice; Right.Op==OKEY)
290 OSLICE3 // Left[R.Left : R.R.Left : R.R.R] (R=Right; Left is untypedchecked or slice; R.Op and R.R.Op==OKEY)
291 OSLICE3ARR // Left[R.Left : R.R.Left : R.R.R] (R=Right; Left is array; R.Op and R.R.Op==OKEY)
dcl.go 1086 if l.N.Op == OKEY {
1096 if l.N.Op == OKEY {
1107 if n.Op != OKEY && n.Sym == nil {
1113 if l == nil && n != nil && n.Op != OKEY {
1127 if n.Op == OKEY {
1142 // during import l->n->op is OKEY, but l->n->left->sym == S
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
sinit.go 609 if r.Op != OKEY {
610 Fatal("structlit: rhs not OKEY: %v", r)
677 if r.Op != OKEY {
678 Fatal("arraylit: rhs not OKEY: %v", r)
755 a := Nod(OSLICE, vstat, Nod(OKEY, nil, nil))
840 a = Nod(OAS, var_, Nod(OSLICE, vauto, Nod(OKEY, nil, nil)))
853 if r.Op != OKEY {
854 Fatal("slicelit: rhs not OKEY: %v", r)
911 if r.Op != OKEY {
912 Fatal("maplit: rhs not OKEY: %v", r
    [all...]
opnames.go 78 OKEY: "KEY",
syntax.go 259 OKEY // Left:Right (key:value in struct/array/map literal, or slice index pair)
284 OSLICE // Left[Right.Left : Right.Right] (Left is untypechecked or slice; Right.Op==OKEY)
287 OSLICE3 // Left[R.Left : R.R.Left : R.R.R] (R=Right; Left is untypedchecked or slice; R.Op and R.R.Op==OKEY)
288 OSLICE3ARR // Left[R.Left : R.R.Left : R.R.R] (R=Right; Left is array; R.Op and R.R.Op==OKEY)
dcl.go 1083 if l.N.Op == OKEY {
1093 if l.N.Op == OKEY {
1104 if n.Op != OKEY && n.Sym == nil {
1110 if l == nil && n != nil && n.Op != OKEY {
1124 if n.Op == OKEY {
1139 // during import l->n->op is OKEY, but l->n->left->sym == S
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
sinit.go 612 if r.Op != OKEY {
613 Fatal("structlit: rhs not OKEY: %v", r)
680 if r.Op != OKEY {
681 Fatal("arraylit: rhs not OKEY: %v", r)
758 a := Nod(OSLICE, vstat, Nod(OKEY, nil, nil))
843 a = Nod(OAS, var_, Nod(OSLICE, vauto, Nod(OKEY, nil, nil)))
856 if r.Op != OKEY {
857 Fatal("slicelit: rhs not OKEY: %v", r)
914 if r.Op != OKEY {
915 Fatal("maplit: rhs not OKEY: %v", r
    [all...]
opnames.go 81 OKEY: "KEY",
syntax.go 262 OKEY // Left:Right (key:value in struct/array/map literal, or slice index pair)
287 OSLICE // Left[Right.Left : Right.Right] (Left is untypechecked or slice; Right.Op==OKEY)
290 OSLICE3 // Left[R.Left : R.R.Left : R.R.R] (R=Right; Left is untypedchecked or slice; R.Op and R.R.Op==OKEY)
291 OSLICE3ARR // Left[R.Left : R.R.Left : R.R.R] (R=Right; Left is array; R.Op and R.R.Op==OKEY)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
sinit.go 609 if r.Op != OKEY {
610 Fatal("structlit: rhs not OKEY: %v", r)
677 if r.Op != OKEY {
678 Fatal("arraylit: rhs not OKEY: %v", r)
755 a := Nod(OSLICE, vstat, Nod(OKEY, nil, nil))
840 a = Nod(OAS, var_, Nod(OSLICE, vauto, Nod(OKEY, nil, nil)))
853 if r.Op != OKEY {
854 Fatal("slicelit: rhs not OKEY: %v", r)
911 if r.Op != OKEY {
912 Fatal("maplit: rhs not OKEY: %v", r
    [all...]
opnames.go 78 OKEY: "KEY",
syntax.go 259 OKEY // Left:Right (key:value in struct/array/map literal, or slice index pair)
284 OSLICE // Left[Right.Left : Right.Right] (Left is untypechecked or slice; Right.Op==OKEY)
287 OSLICE3 // Left[R.Left : R.R.Left : R.R.R] (R=Right; Left is untypedchecked or slice; R.Op and R.R.Op==OKEY)
288 OSLICE3ARR // Left[R.Left : R.R.Left : R.R.R] (R=Right; Left is array; R.Op and R.R.Op==OKEY)
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_encrypt.cpp 32 CFX_ByteString okey = pEncrypt->GetString("O");
33 CRYPT_MD5Update(md5, (uint8_t*)okey.c_str(), okey.GetLength());
304 CFX_ByteString okey = local
306 if (okey.GetLength() < 48) {
314 const uint8_t* pkey = bOwner ? (const uint8_t*)okey : (const uint8_t*)ukey;
468 CFX_ByteString okey = m_pEncryptDict->GetString("O"); local
488 int okeylen = okey.GetLength();
494 FXSYS_memcpy(okeybuf, okey.c_str(), okeylen);
    [all...]
  /external/iproute2/man/man8/
ip-tunnel.8 180 .BI okey " K"
189 .BR ikey " and " okey

Completed in 2309 milliseconds

1 2 3