HomeSort by relevance Sort by last modified time
    Searched defs:spec (Results 251 - 275 of 934) sorted by null

<<11121314151617181920>>

  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DataDrivenFormatTest.java 97 String spec = currentCase.getString("spec"); local
111 // parse 'spec' - either 'PATTERN=yy mm dd' or 'DATE=x,TIME=y'
112 if(spec.startsWith(kPATTERN)) {
113 pattern = spec.substring(kPATTERN.length());
118 styleSet.parseFrom(spec);
  /external/iptables/extensions/
libxt_iprange.c 47 const char *spec[2] = {from, to}; local
55 for (i = 0; i < ARRAY_SIZE(spec); ++i) {
56 ia6 = xtables_numeric_to_ip6addr(spec[i]);
59 optname, spec[i]);
63 for (i = 0; i < ARRAY_SIZE(spec); ++i) {
64 ia4 = xtables_numeric_to_ipaddr(spec[i]);
67 optname, spec[i]);
  /external/junit/src/main/java/org/junit/internal/runners/
JUnit4ClassRunner.java 65 Description spec = Description.createSuiteDescription(getName(), classAnnotations()); local
68 spec.addChild(methodDescription(method));
70 return spec;
  /external/kernel-headers/original/uapi/linux/
atmbr2684.h 74 } spec; member in struct:br2684_if_spec
  /external/libxaac/decoder/
ixheaacd_pns_js_thumb.c 78 WORD32 *spec = ptr_spec_coef; local
84 *spec = (*seed >> 3);
86 nrg = ixheaacd_add32_sat(nrg, ixheaacd_mult32_shl_sat(*spec, *spec));
88 spec++;
102 spec = ptr_spec_coef;
105 *spec = ixheaacd_shr32_dir_sat_limit(ixheaacd_mult32_shl_sat(*spec, scale),
107 spec++;
127 WORD32 *spec = &ptr_aac_dec_channel_info[channel]->ptr_spec_coeff[0] local
251 WORD32 *spec = ptr_aac_dec_channel_info->ptr_spec_coeff; local
    [all...]
  /external/selinux/libselinux/src/
label_backends_android.c 17 typedef struct spec { struct
34 const struct spec *sp1 = A, *sp2 = B;
56 struct spec *curr_spec, *spec_arr = data->spec_arr;
122 /* On the second pass, process and store the specification in spec. */
167 * After the first pass, the spec array is malloced / realloced to
168 * the appropriate size. Second pass is to populate the spec array.
188 /* grow spec array if required */
261 qsort(data->spec_arr, data->nspec, sizeof(struct spec), cmp);
278 struct spec *spec; local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/tests/
broadcast_simple_test.cc 249 const R3ImplicitBroadcastSpec& spec = GetParam(); local
253 Array3D<float> r3_array(spec.output_bounds[0], spec.output_bounds[1],
254 spec.output_bounds[2]);
255 Array3D<float> r3_implicit_array(spec.input_bounds[0], spec.input_bounds[1],
256 spec.input_bounds[2]);
259 MakeR3Data(spec.output_bounds, spec.minor2major_layout, &r3_shape,
262 MakeR3Data(spec.input_bounds, spec.minor2major_layout, &r3_implicit_shape
492 const R2ImplicitBroadcastSpec& spec = GetParam(); local
    [all...]
concat_test.cc 492 const R2BinarySpec& spec = GetParam(); local
493 Array2D<int32> lhs(spec.lhs_dim0, spec.lhs_dim1);
495 Array2D<int32> rhs(spec.rhs_dim0, spec.rhs_dim1);
501 builder.ConcatInDim({a0, a1}, spec.concat_dimension);
504 ReferenceUtil::Concat2D(lhs, rhs, spec.concat_dimension);
  /external/v8/tools/clang/blink_gc_plugin/
RecordInfo.h 39 BasePoint(const clang::CXXBaseSpecifier& spec,
42 : spec_(spec), info_(info), status_(status) {}
44 const clang::CXXBaseSpecifier& spec() { return spec_; } function in class:BasePoint
  /external/webrtc/webrtc/modules/audio_device/linux/
audio_mixer_manager_pulse_linux.cc 261 const pa_sample_spec *spec = local
263 if (!spec)
272 LATE(pa_cvolume_set)(&cVolumes, spec->channels, volume);
799 // count from our sample spec. We could use PA_CHANNELS_MAX to cover our
    [all...]
  /external/wycheproof/java/com/google/security/wycheproof/
EcUtil.java 26 import java.security.spec.ECField;
27 import java.security.spec.ECFieldFp;
28 import java.security.spec.ECGenParameterSpec;
29 import java.security.spec.ECParameterSpec;
30 import java.security.spec.ECPoint;
31 import java.security.spec.ECPublicKeySpec;
32 import java.security.spec.EllipticCurve;
33 import java.security.spec.InvalidParameterSpecException;
83 java.security.spec.EllipticCurve curveSpec = new java.security.spec.EllipticCurve(fp, a, b)
450 ECParameterSpec spec = new ECParameterSpec(newCurve, w, p, 1); local
    [all...]
  /external/wycheproof/java/com/google/security/wycheproof/testcases/
EcKeyTest.java 31 import java.security.spec.ECParameterSpec;
32 import java.security.spec.ECPoint;
33 import java.security.spec.ECPublicKeySpec;
34 import java.security.spec.InvalidKeySpecException;
35 import java.security.spec.PKCS8EncodedKeySpec;
36 import java.security.spec.X509EncodedKeySpec;
152 PKCS8EncodedKeySpec spec = new PKCS8EncodedKeySpec(encoded); local
154 ECPrivateKey decoded = (ECPrivateKey) kf.generatePrivate(spec);
RsaKeyTest.java 26 import java.security.spec.InvalidKeySpecException;
27 import java.security.spec.X509EncodedKeySpec;
1472 X509EncodedKeySpec spec = new X509EncodedKeySpec(encoded); local
1490 X509EncodedKeySpec spec = new X509EncodedKeySpec(TestUtil.hexToBytes(encoded)); local
    [all...]
  /frameworks/base/cmds/incidentd/src/
IncidentService.cpp 364 PrivacySpec spec = PrivacySpec::new_spec(argCount > 3 ? atoi(args[3]) : -1); local
365 error = pBuf.strip(spec);
367 fprintf(err, "Error strip pii fields with spec %d\n", spec.dest);
Reporter.cpp 80 PrivacySpec spec = PrivacySpec::new_spec(dest); local
81 switch (spec.dest) {
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreKeyGeneratorSpi.java 33 import java.security.spec.AlgorithmParameterSpec;
167 KeyGenParameterSpec spec = (KeyGenParameterSpec) params; local
168 if (spec.getKeystoreAlias() == null) {
173 mSpec = spec;
175 mKeySizeBits = (spec.getKeySize() != -1) ? spec.getKeySize() : mDefaultKeySizeBits;
185 mKeymasterPurposes = KeyProperties.Purpose.allToKeymaster(spec.getPurposes());
187 spec.getEncryptionPaddings());
188 if (spec.getSignaturePaddings().length > 0) {
192 mKeymasterBlockModes = KeyProperties.BlockMode.allToKeymaster(spec.getBlockModes())
270 KeyGenParameterSpec spec = mSpec; local
    [all...]
AndroidKeyStoreRSACipherSpi.java 33 import java.security.spec.AlgorithmParameterSpec;
34 import java.security.spec.InvalidParameterSpecException;
35 import java.security.spec.MGF1ParameterSpec;
39 import javax.crypto.spec.OAEPParameterSpec;
40 import javax.crypto.spec.PSource;
187 "Unsupported parameter spec: " + params
190 OAEPParameterSpec spec = (OAEPParameterSpec) params; local
191 if (!MGF_ALGORITGM_MGF1.equalsIgnoreCase(spec.getMGFAlgorithm())) {
193 "Unsupported MGF: " + spec.getMGFAlgorithm()
196 String jcaDigest = spec.getDigestAlgorithm()
257 OAEPParameterSpec spec; local
273 OAEPParameterSpec spec = local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
TileQueryHelper.java 89 for (String spec : possibleTiles) {
90 final QSTile tile = host.createTile(spec);
101 tile.setTileSpec(spec);
135 String spec = CustomTile.toSpec(componentName);
136 State state = getState(params, spec);
138 addTile(spec, appLabel, state, false);
154 addTile(spec, icon, label != null ? label.toString() : "null", appLabel);
169 private State getState(Collection<QSTile> tiles, String spec) {
171 if (spec.equals(tile.getTileSpec())) {
178 private void addTile(String spec, CharSequence appLabel, State state, boolean isSystem)
205 public String spec; field in class:TileQueryHelper.TileInfo
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DozeParameters.java 101 return "spec: " + sPickupSubtypePerformsProxMatcher.mSpec;
221 String spec = getString("doze.pickup.proxcheck", local
224 if (TextUtils.isEmpty(spec)) {
230 || !TextUtils.equals(spec, sPickupSubtypePerformsProxMatcher.mSpec)) {
231 sPickupSubtypePerformsProxMatcher = new IntInOutMatcher(spec);
255 * Parses a spec of the form `1,2,3,!5,*`. The resulting object will match numbers that are
265 * - an empty spec
266 * - a spec containing that are empty, or a lone !
267 * - a spec for anything other than numbers or *
278 public IntInOutMatcher(String spec) {
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tileimpl/
QSTileImplTest.java 71 String spec = "spec"; local
76 when(mHost.indexOf(spec)).thenReturn(POSITION);
81 mTile.setTileSpec(spec);
  /frameworks/base/services/core/jni/
com_android_server_AlarmManagerService.cpp 114 struct itimerspec spec; local
115 memset(&spec, 0, sizeof(spec));
116 memcpy(&spec.it_value, ts, sizeof(spec.it_value));
118 return timerfd_settime(fds[type], TFD_TIMER_ABSTIME, &spec, NULL);
366 struct itimerspec spec; local
367 memset(&spec, 0, sizeof(spec));
372 TFD_TIMER_ABSTIME | TFD_TIMER_CANCEL_ON_SET, &spec, NULL)
    [all...]
  /frameworks/compile/mclinker/include/mcld/Object/
SectionMap.h 42 const InputSectDesc::Spec& spec() const { return m_Spec; } function in class:mcld::SectionMap::Input
57 InputSectDesc::Spec m_Spec;
  /frameworks/support/compat/src/main/java/androidx/core/text/util/
LinkifyCompat.java 427 LinkSpec spec = new LinkSpec(); local
430 spec.url = url;
431 spec.start = start;
432 spec.end = end;
434 links.add(spec);
458 LinkSpec spec = new LinkSpec(); local
462 spec.start = base + start;
463 spec.end = base + end;
475 spec.url = "geo:0,0?q=" + encodedAddress;
476 links.add(spec);
497 LinkSpec spec = new LinkSpec(); local
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
TooltipPopup.java 165 final int spec = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED); local
166 mContentView.measure(spec, spec);
  /libcore/benchmarks/src/benchmarks/regression/
CipherBenchmark.java 21 import java.security.spec.AlgorithmParameterSpec;
27 import javax.crypto.spec.IvParameterSpec;
96 private AlgorithmParameterSpec spec; field in class:CipherBenchmark
124 spec = new IvParameterSpec(IV);
128 cipherEncrypt.init(Cipher.ENCRYPT_MODE, key, spec);
131 cipherDecrypt.init(Cipher.DECRYPT_MODE, key, spec);

Completed in 1533 milliseconds

<<11121314151617181920>>