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

1 2 3 4 5 6 7 8 91011>>

  /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):
63 use_resource=resource_variable_ops.is_resource_variable(primary),
69 if isinstance(primary, variables.Variable) and primary._save_slice_info:
70 # Primary is a partitioned variable, so we need to also indicate that
74 # here can be "linear//weights/Adam:0", while primary.op.name is
77 real_slot_name = slot.name[len(primary.op.name + "/"):-2
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/companion/
CompanionAwarePreparer.java 34 * Retrieves the {@link ITestDevice} instance of companion device allocated for the primary
36 * @param primary
38 * @throws TargetSetupError if no companion device has been allocated for the primary device
40 protected ITestDevice getCompanion(ITestDevice primary) throws TargetSetupError {
41 ITestDevice companionDevice = getCompanionDeviceTracker().getCompanionDevice(primary);
44 primary.getSerialNumber()), primary.getDeviceDescriptor());
  /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/impl/number/
DecimalQuantity_SimpleStorage.java 61 // the "precision" (the number of digits in the long). "primary" and "primaryScale" are the only
64 // always be re-computed from "primary" and "primaryScale".
65 private long primary; field in class:DecimalQuantity_SimpleStorage
110 primary = input;
112 primaryPrecision = computePrecision(primary);
136 primary = (mantissa << (exponent - 52));
138 primaryPrecision = computePrecision(primary);
147 primary = 0L;
154 primary = Long.parseLong(temp.charAt(0) + temp.substring(2, expPos));
160 primary = Long.parseLong(temp.substring(2)); // ignores leading zero
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/impl/number/
DecimalQuantity_SimpleStorage.java 58 // the "precision" (the number of digits in the long). "primary" and "primaryScale" are the only
61 // always be re-computed from "primary" and "primaryScale".
62 private long primary; field in class:DecimalQuantity_SimpleStorage
107 primary = input;
109 primaryPrecision = computePrecision(primary);
133 primary = (mantissa << (exponent - 52));
135 primaryPrecision = computePrecision(primary);
144 primary = 0L;
151 primary = Long.parseLong(temp.charAt(0) + temp.substring(2, expPos));
157 primary = Long.parseLong(temp.substring(2)); // ignores leading zero
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/
CallCardPresenter.java 118 private DialerCall primary; field in class:CallCardPresenter
165 primary = call;
166 if (shouldShowNoteSentToast(primary)) {
202 if (isOutgoingEmergencyCall(primary)) {
204 } else if (isIncomingEmergencyCall(primary) || isIncomingEmergencyCall(secondary)) {
234 if (primary != null) {
235 primary.removeListener(this);
240 primary = null;
261 DialerCall primary = null; local
265 primary = callList.getIncomingCall()
    [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...]
  /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 {
  /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 {
  /hardware/libhardware_legacy/audio/
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 {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DialerFilterRule.java 49 INode primary = node.appendChild(FQCN_EDIT_TEXT); local
50 primary.setAttribute(ANDROID_URI, ATTR_TEXT, "Primary");
51 primary.setAttribute(ANDROID_URI, ATTR_ID, "@android:id/primary"); //$NON-NLS-1$
52 primary.setAttribute(ANDROID_URI, ATTR_LAYOUT_BELOW,
54 primary.setAttribute(ANDROID_URI, ATTR_LAYOUT_WIDTH, fillParent);
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyComposite.java 40 public XmlPropertyComposite(XmlProperty primary, XmlProperty[] properties) {
42 primary.getEditor(),
43 primary.getFactory(),
44 primary.getNode(),
45 primary.getDescriptor());
  /device/google/cuttlefish_common/guest/vsoc/lib/
guest_region_e2e_test.cpp 88 auto primary = vsoc::E2EPrimaryRegionView::GetInstance(); local
90 ASSERT_TRUE(!!primary);
93 SetGuestStrings(primary);
94 LOG(INFO) << "Primary guest strings are set";
97 EXPECT_TRUE(primary->MaybeInterruptPeer());
99 primary->WaitForInterrupt();
101 CheckPeerStrings(primary);
102 LOG(INFO) << "Verified peer's primary strings";
115 primary->SendSignal(vsoc::layout::Sides::Peer,
116 &primary->data()->guest_to_host_signal)
    [all...]
  /external/v8/src/ic/
stub-cache.cc 61 // Compute the primary entry.
63 Entry* primary = entry(primary_, primary_offset); local
64 Object* old_handler = primary->value;
66 // If the primary entry has useful data in it, we retire it to the
69 Map* old_map = primary->map;
70 int seed = PrimaryOffset(primary->key, old_map);
71 int secondary_offset = SecondaryOffset(primary->key, seed);
73 *secondary = *primary;
76 // Update primary cache.
77 primary->key = name
87 Entry* primary = entry(primary_, primary_offset); local
    [all...]
  /art/runtime/interpreter/mterp/arm/
alt_stub.S 8 adrl lr, artMterpAsmInstructionStart + (${opnum} * 128) @ Addr of primary handler.
  /art/runtime/interpreter/mterp/mips/
alt_stub.S 7 la ra, artMterpAsmInstructionStart + (${opnum} * 128) # Addr of primary handler
  /art/runtime/interpreter/mterp/mips64/
alt_stub.S 13 daddu ra, ra, (${opnum} * 128) # Addr of primary handler.
  /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 *)

Completed in 785 milliseconds

1 2 3 4 5 6 7 8 91011>>