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

1 2 3 4 5 6 7 8 91011>>

  /build/kati/testcase/
ninja_implicit_dependent.sh 27 primary: .KATI_IMPLICIT_OUTPUTS := secondary
28 primary:
29 @touch primary secondary
30 @echo Made primary+secondary
34 echo Made primary+secondary
46 touch primary
  /external/tensorflow/tensorflow/python/training/
slot_creator.py 18 A slot is a `Variable` created with the same shape as a primary variable or
19 `Tensor`. A slot is always scoped in the namespace of the primary object and
23 the primary object:
51 def _create_slot_var(primary, val, scope, validate_shape, shape, dtype):
61 if resource_variable_ops.is_resource_variable(primary):
63 elif isinstance(primary, variables.RefVariable):
78 if isinstance(primary, variables.Variable) and primary._save_slice_info:
79 # Primary is a partitioned variable, so we need to also indicate that
83 # here can be "linear//weights/Adam:0", while primary.op.name i
    [all...]
  /device/google/cuttlefish_common/host/vsoc/lib/
host_region_e2e_test.cpp 62 auto primary = local
64 ASSERT_TRUE(!!primary);
69 SetHostStrings(primary);
71 EXPECT_TRUE(primary->MaybeInterruptPeer());
73 primary->WaitForInterrupt();
75 CheckPeerStrings(primary);
86 primary->SendSignal(vsoc::layout::Sides::Peer,
87 &primary->data()->host_to_guest_signal);
89 primary->WaitForInterrupt();
91 primary->ProcessSignalsFromPeer
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/impl/number/
DecimalQuantity_SimpleStorage.java 62 // the "precision" (the number of digits in the long). "primary" and "primaryScale" are the only
65 // always be re-computed from "primary" and "primaryScale".
66 private long primary; field in class:DecimalQuantity_SimpleStorage
111 primary = input;
113 primaryPrecision = computePrecision(primary);
137 primary = (mantissa << (exponent - 52));
139 primaryPrecision = computePrecision(primary);
148 primary = 0L;
155 primary = Long.parseLong(temp.charAt(0) + temp.substring(2, expPos));
161 primary = Long.parseLong(temp.substring(2)); // ignores leading zero
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/impl/number/
DecimalQuantity_SimpleStorage.java 59 // the "precision" (the number of digits in the long). "primary" and "primaryScale" are the only
62 // always be re-computed from "primary" and "primaryScale".
63 private long primary; field in class:DecimalQuantity_SimpleStorage
108 primary = input;
110 primaryPrecision = computePrecision(primary);
134 primary = (mantissa << (exponent - 52));
136 primaryPrecision = computePrecision(primary);
145 primary = 0L;
152 primary = Long.parseLong(temp.charAt(0) + temp.substring(2, expPos));
158 primary = Long.parseLong(temp.substring(2)); // ignores leading zero
    [all...]
  /external/icu/icu4c/source/i18n/
collation.cpp 37 uint32_t primary; local
40 primary = (uint32_t)((offset % 251) + 4) << 16;
44 primary = (uint32_t)((offset % 254) + 2) << 16;
48 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24));
56 uint32_t primary = (uint32_t)((offset % 254) + 2) << 8; local
62 primary |= (uint32_t)((offset % 251) + 4) << 16;
66 primary |= (uint32_t)((offset % 254) + 2) << 16;
70 return primary | ((basePrimary & 0xff000000) + (uint32_t)(offset << 24));
125 uint32_t p = (uint32_t)(dataCE >> 32); // three-byte primary pppppp00
137 uint32_t primary = 2 + (c % 18) * 14 local
    [all...]
  /build/make/target/product/
handheld_vendor.mk 25 audio.primary.default \
  /device/generic/goldfish/
audio_policy.conf 17 # For instance, "primary" corresponds to audio.primary.<device>.so.
18 # The "primary" module is mandatory and must include at least one output with
27 primary {
29 primary {
38 primary {
  /device/google/cuttlefish/shared/config/
audio_policy.conf 17 # For instance, "primary" corresponds to audio.primary.<device>.so.
18 # The "primary" module is mandatory and must include at least one output with
27 primary {
29 primary {
38 primary {
  /external/webrtc/webrtc/modules/audio_coding/neteq/
packet.h 26 bool primary; // Primary, i.e., not redundant payload. member in struct:webrtc::Packet
34 primary(true),
44 // two regular packets with the same sequence number and timestamp a primary
49 this->primary == rhs.primary &&
60 // (i.e., "earlier") if it is primary, and right hand side is not.
71 return (this->primary && !rhs.primary);
  /frameworks/av/services/audiopolicy/
audio_policy.conf 30 # For instance, "primary" corresponds to audio.primary.<device>.so.
31 # The "primary" module is mandatory and must include at least one output with
73 # primary {
84 primary {
106 primary {
115 primary {
  /device/google/cuttlefish_common/guest/vsoc/lib/
guest_region_e2e_test.cpp 71 auto primary = vsoc::E2EPrimaryRegionView::GetInstance(); local
73 ASSERT_TRUE(!!primary);
76 SetGuestStrings(primary);
77 LOG(INFO) << "Primary guest strings are set";
80 EXPECT_TRUE(primary->MaybeInterruptPeer());
82 primary->WaitForInterrupt();
84 CheckPeerStrings(primary);
85 LOG(INFO) << "Verified peer's primary strings";
98 primary->SendSignal(vsoc::layout::Sides::Peer,
99 &primary->data()->guest_to_host_signal)
    [all...]
  /external/v8/src/ic/
stub-cache.cc 28 // Hash algorithm for the primary table. This algorithm is replicated in
50 // Use the seed from the primary cache in the secondary cache.
78 // Compute the primary entry.
80 Entry* primary = entry(primary_, primary_offset); local
81 MaybeObject* old_handler = primary->value;
83 // If the primary entry has useful data in it, we retire it to the
87 Map* old_map = primary->map;
88 int seed = PrimaryOffset(primary->key, old_map);
89 int secondary_offset = SecondaryOffset(primary->key, seed);
91 *secondary = *primary;
105 Entry* primary = entry(primary_, primary_offset); local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArraySet.java 38 * The primary LocalsArray represents the locals as seen from
42 private final OneLocalsArray primary; field in class:LocalsArraySet
59 primary = new OneLocalsArray(maxLocals);
64 * Constructs an instance with the specified primary and secondaries set.
66 * @param primary {@code non-null;} primary locals to use
70 public LocalsArraySet(OneLocalsArray primary,
72 super(primary.getMaxLocals() > 0);
74 this.primary = primary;
    [all...]
  /external/autotest/server/hosts/
shadowing_store_unittest.py 22 primary = _FakeRaisingStore(info)
24 store = shadowing_store.ShadowingStore(primary, shadow)
29 primary = _FakeRaisingStore()
31 store = shadowing_store.ShadowingStore(primary, shadow)
34 self.assertEqual(primary.get(), info)
40 primary = _FakeRaisingStore(init_info)
42 store = shadowing_store.ShadowingStore(primary, shadow)
45 self.assertEqual(primary.get(), info)
51 primary = _FakeRaisingStore(init_info)
53 store = shadowing_store.ShadowingStore(primary, shadow
    [all...]
  /device/generic/goldfish/audio/
Android.mk 21 LOCAL_MODULE := audio.primary.goldfish
44 LOCAL_MODULE := audio.primary.goldfish_legacy
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
token.ml 11 (* primary *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 11 (* primary *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
token.ml 11 (* primary *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
token.ml 11 (* primary *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 11 (* primary *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
token.ml 11 (* primary *)
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/OCaml-Kaleidoscope/Chapter2/
token.ml 11 (* primary *)
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 11 (* primary *)
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/OCaml-Kaleidoscope/Chapter4/
token.ml 11 (* primary *)

Completed in 1678 milliseconds

1 2 3 4 5 6 7 8 91011>>