HomeSort by relevance Sort by last modified time
    Searched refs:ci (Results 226 - 250 of 452) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/iproute2/bridge/
fdb.c 241 struct nda_cacheinfo *ci = RTA_DATA(tb[NDA_CACHEINFO]); local
246 ci->ndm_used/hz);
248 ci->ndm_updated/hz);
250 fprintf(fp, "used %d/%d ", ci->ndm_used/hz,
251 ci->ndm_updated/hz);
  /external/turbine/java/com/google/turbine/lower/
LowerSignature.java 234 private boolean classNeedsSig(SourceTypeBoundClass ci) {
235 if (!ci.typeParameters().isEmpty()) {
238 if (ci.superClassType() != null && needsSig(ci.superClassType())) {
241 for (Type i : ci.interfaceTypes()) {
  /external/libjpeg-turbo/
jdcolor.c 368 int ci; local
400 for (ci = 0; ci < num_components; ci++) {
401 inptr = input_buf[ci][input_row];
404 outptr[ci] = inptr[col];
741 int ci; local
786 for (ci = 1; ci < cinfo->num_components; ci++
    [all...]
jdmarker.c 244 int c, ci; local
282 for (ci = 0, compptr = cinfo->comp_info; ci < cinfo->num_components;
283 ci++, compptr++) {
284 compptr->component_index = ci;
308 int i, ci, n, c, cc, pi; local
335 for (ci = 0, compptr = cinfo->comp_info;
336 ci < cinfo->num_components && ci < MAX_COMPS_IN_SCAN;
337 ci++, compptr++)
    [all...]
jccolor.c 461 register int ci; local
496 for (ci = 0; ci < nc; ci++) {
498 outptr = output_buf[ci][output_row];
500 outptr[col] = inptr[ci]; /* don't need GETJSAMPLE() here */
  /external/wpa_supplicant_8/src/ap/
ieee802_11_shared.c 70 struct wpa_channel_info ci; local
72 if (hostapd_drv_channel_info(hapd, &ci) != 0) {
86 if (ocv_insert_extended_oci(&ci, oci_ie) < 0) {
148 struct wpa_channel_info ci; local
150 if (hostapd_drv_channel_info(hapd, &ci) != 0) {
164 if (ocv_insert_extended_oci(&ci, oci_ie) < 0) {
229 struct wpa_channel_info ci; local
244 if (hostapd_drv_channel_info(hapd, &ci) != 0) {
251 channel_width_to_int(ci.chanwidth),
252 ci.seg1_idx, &tx_chanwidth
    [all...]
  /external/strace/
rtnl_link.c 728 } ci; local
730 if (len < sizeof(ci))
732 else if (!umove_or_printaddr(tcp, addr, &ci)) {
733 PRINT_FIELD_U("{", ci, max_reasm_len);
734 PRINT_FIELD_U(", ", ci, tstamp);
735 PRINT_FIELD_U(", ", ci, reachable_time);
736 PRINT_FIELD_U(", ", ci, retrans_time);
  /external/tensorflow/tensorflow/contrib/rnn/kernels/
lstm_ops.h 168 typename TTypes<T>::Matrix ci, typename TTypes<T>::Matrix co,
190 typename TTypes<T>::ConstMatrix ci, typename TTypes<T>::ConstMatrix co,
215 typename TTypes<T>::ConstMatrix o, typename TTypes<T>::ConstMatrix ci,
240 // dci[t] = tanh'(ci[t]) dcs[t] i[t]
241 dci.device(d) = (ci.constant(T(1)) - ci * ci) * dcs * i;
246 // di[t] = sigm'(i[t]) dcs[t] ci[t]
247 di.device(d) = i * (i.constant(T(1)) - i) * dcs * ci;
  /external/pdfium/third_party/libtiff/
tif_jpeg.c 646 int ci; local
651 for (ci = 0, compptr = comp_info; ci < num_components;
652 ci++, compptr++) {
660 sp->ds_buffer[ci] = buf;
1025 int ci; local
1399 int ci, clumpoffset; local
1983 int clumpoffset, ci, xpos, ypos; local
2069 int ci, ypos, n; local
    [all...]
  /build/kati/
parser.go 226 ci := findLiteralChar(line, ':', 0, skipVar)
227 if ci >= 0 {
228 eqi := findLiteralChar(line[ci+1:], '=', 0, skipVar)
235 switch line[ci+1+eqi-1] {
237 lhsbytes = append(lhsbytes, line[ci+1:ci+1+eqi-1]...)
238 op = string(line[ci+1+eqi-1 : ci+1+eqi+1])
240 lhsbytes = append(lhsbytes, line[ci+1:ci+1+eqi]...
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RuleBasedBreakIterator.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RuleBasedBreakIterator.java     [all...]
  /external/syzkaller/syz-ci/
syz-ci.go 4 // syz-ci is a continuous fuzzing system for syzkaller.
7 // For usage instructions see: docs/ci.md
21 // - syz-ci is always built on the same revision as the rest of syzkaller binaries,
33 // syz-ci : current executable
34 // syz-ci.tag : tag of the current executable (syzkaller git hash)
  /external/icu/icu4c/source/test/intltest/
svccoll.cpp 290 const CollatorInfo* ci = getInfo(loc); local
291 if (ci) {
292 return ci->collator->clone();
301 const CollatorInfo* ci = getInfo(objectLocale); local
302 if (ci) {
303 ci->getDisplayName(displayLocale, result);
  /external/tensorflow/tensorflow/contrib/rnn/python/ops/
lstm_ops.py 65 [i, ci, f, o] = xh * w + b
73 ci = tanh(ci)
75 cs = ci .* i + cs_prev .* f
106 A tuple of `Tensor` objects (i, cs, f, o, ci, co, h).
111 ci: A `Tensor`. Has the same type as `x`. The cell input.
174 A tuple of `Tensor` objects (i, cs, f, o, ci, co, h).
183 ci: A list with the same number of `Tensor` objects as `x` of `Tensor`
213 i, cs, f, o, ci, co, h = gen_lstm_ops.block_lstm(
229 f), array_ops.unstack(o), array_ops.unstack(ci), array_ops.unstack
    [all...]
  /external/clang/test/SemaCXX/
class.cpp 49 static const NestedC ci = 0; // expected-error {{static data member of type 'const C::NestedC' must be initialized out of line}} member in class:C
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
SSLUtils.java 472 for (int ci = 0; ci < protocolLength; ++ci) {
473 char c = protocol.charAt(ci);
  /external/kmod/tools/
modprobe.c 168 } ci[] = { local
178 for (i = 0; i < ARRAY_SIZE(ci); i++) {
179 struct kmod_config_iter *iter = ci[i].get_iter(ctx);
187 printf("%s %s", ci[i].name,
  /external/libaom/libaom/test/
av1_inv_txfm2d_test.cc 65 for (int ci = 0; ci < count; ci++) {
70 if (ci == 0) {
  /external/lzma/C/
MtDec.h 86 void (*Parse)(void *p, unsigned coderIndex, CMtDecCallbackInfo *ci);
  /external/syzkaller/
Makefile 83 ci hub \
125 ci:
126 GOOS=$(HOSTOS) GOARCH=$(HOSTARCH) $(HOSTGO) build $(GOHOSTFLAGS) -o ./bin/syz-ci github.com/google/syzkaller/syz-ci
275 # and we want to install at least gometalinter on Travis CI.
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
RBBITestMonkey.java 2045 int ci; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
RBBITestMonkey.java 2042 int ci; local
    [all...]
  /development/vndk/tools/header-checker/src/dumper/
fake_decl_source.cpp 25 FakeDeclSource::FakeDeclSource(const clang::CompilerInstance &ci) : ci_(ci) {}
  /external/deqp-deps/SPIRV-Tools/source/opt/
module.cpp 158 for (auto& ci : capabilities_) {
159 uint32_t tcap = ci.GetSingleWordOperand(0);

Completed in 2636 milliseconds

1 2 3 4 5 6 7 8 91011>>