HomeSort by relevance Sort by last modified time
    Searched refs:in (Results 151 - 175 of 38930) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string.io/
get_line_delim.pass.cpp 26 std::istringstream in(" abc* def** ghij");
28 getline(in, s, '*');
29 assert(in.good());
31 getline(in, s, '*');
32 assert(in.good());
34 getline(in, s, '*');
35 assert(in.good());
37 getline(in, s, '*');
38 assert(in.eof());
42 std::wistringstream in(L" abc* def** ghij")
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.nonmembers/string.io/
get_line_delim.pass.cpp 26 std::istringstream in(" abc* def** ghij");
28 getline(in, s, '*');
29 assert(in.good());
31 getline(in, s, '*');
32 assert(in.good());
34 getline(in, s, '*');
35 assert(in.good());
37 getline(in, s, '*');
38 assert(in.eof());
42 std::wistringstream in(L" abc* def** ghij")
    [all...]
  /external/fec/
sumsq.c 22 unsigned long long sumsq(signed short *in,int cnt){
26 return sumsq_port(in,cnt);
30 return sumsq_mmx(in,cnt);
32 return sumsq_sse2(in,cnt);
37 return sumsq_av(in,cnt);
sumsq_port.c 8 unsigned long long sumsq_port(signed short *in,int cnt){
13 sum += (int)in[i] * (int)in[i];
  /external/llvm/test/CodeGen/SystemZ/Large/
spill-02.py 39 for i in range(count):
46 for j in range(4):
47 for i in range(count):
52 # index for the alloca area. Also throw in a volatile store, so that this
66 for j in range(4):
67 for i in range(count):
  /external/tpm2/
HashSequenceStart.c 18 HashSequenceStart_In *in, // IN: input parameter list
24 if(in->hashAlg == TPM_ALG_NULL)
27 return ObjectCreateEventSequence(&in->auth, &out->sequenceHandle);
31 return ObjectCreateHashSequence(in->hashAlg, &in->auth, &out->sequenceHandle);
PCR_Reset.c 19 PCR_Reset_In *in // IN: input parameter list
27 if(!PCRIsResetAllowed(in->pcrHandle))
32 if(PCRIsStateSaved(in->pcrHandle) && gp.orderlyState != SHUTDOWN_NONE)
42 // Reset selected PCR in all banks to 0
43 PCRSetValue(in->pcrHandle, 0);
47 PCRChanged(in->pcrHandle);
GetCapability.c 14 // TPM_RC_HANDLE value of property is in an unsupported handle range for the
21 GetCapability_In *in, // IN: input parameter list
28 out->capabilityData.capability = in->capability;
30 switch(in->capability)
33 out->moreData = AlgorithmCapGetImplemented((TPM_ALG_ID) in->property,
34 in->propertyCount, &out->capabilityData.data.algorithms);
37 switch(HandleGetType((TPM_HANDLE) in->property))
41 out->moreData = ObjectCapGetLoaded((TPM_HANDLE) in->property,
42 in->propertyCount
    [all...]
CreatePrimary.c 37 CreatePrimary_In *in, // IN: input parameter list
47 // the size of the data object in inSensitive.
48 if( (in->inPublic.t.publicArea.objectAttributes.sensitiveDataOrigin == SET)
49 != (in->inSensitive.t.sensitive.data.t.size == 0 ))
53 // Check attributes in input public area. TPM_RC_ATTRIBUTES, TPM_RC_KDF,
56 result = PublicAttributesValidation(FALSE, in->primaryHandle,
57 &in->inPublic.t.publicArea);
62 if( MemoryRemoveTrailingZeros(&in->inSensitive.t.sensitive.userAuth)
63 > CryptGetHashDigestSize(in->inPublic.t.publicArea.nameAlg)
    [all...]
NV_Certify.c 27 NV_Certify_In *in, // IN: input parameter list
51 NvGetIndexInfo(in->nvIndex, &nvIndex);
55 result = NvReadAccessChecks(in->authHandle, in->nvIndex);
61 if((in->size + in->offset) > nvIndex.publicArea.dataSize)
66 // Filling in attest information
69 result = FillInAttestInfo(in->signHandle,
70 &in->inScheme
    [all...]
  /frameworks/base/core/java/android/hardware/location/
IFusedLocationHardware.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
35 void registerSink(in IFusedLocationHardwareSink eventSink) = 0;
42 void unregisterSink(in IFusedLocationHardwareSink eventSink) = 1;
45 * Provides access to the batch size available in Hardware.
59 void startBatching(in int id, in FusedBatchOptions batchOptions) = 3;
67 void stopBatching(in int id) = 4;
70 * Updates a batching operation in progress.
77 void updateBatchingOptions(in int id, in FusedBatchOptions batchOptions) = 5
    [all...]
  /frameworks/base/core/java/android/service/quicksettings/
IQSService.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
26 Tile getTile(in IBinder tile);
27 void updateQsTile(in Tile tile, in IBinder service);
28 void updateStatusIcon(in IBinder tile, in Icon icon,
30 void onShowDialog(in IBinder tile);
31 void onStartActivity(in IBinder tile);
34 void startUnlockAndRun(in IBinder tile)
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Interp.h 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
51 ImageTypeShortBase *in = img->ptr[yi-1] + xi - 1; local
54 tmpf[0] = in[0] * ciTable[off + 40];
55 tmpf[0] += in[1] * ciTable[off];
56 tmpf[0] += in[2] * ciTable[40 - off];
57 tmpf[0] += in[3] * ciTable[80 - off];
58 in += img->pitch;
59 tmpf[1] = in[0] * ciTable[off + 40];
60 tmpf[1] += in[1] * ciTable[off]
    [all...]
MatrixUtils.h 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
63 static void convert9to33(double out[3][3], double in[9]) {
64 out[0][0] = in[0];
65 out[0][1] = in[1];
66 out[0][2] = in[2];
68 out[1][0] = in[3];
69 out[1][1] = in[4];
70 out[1][2] = in[5];
72 out[2][0] = in[6]
    [all...]
  /external/libopus/silk/arm/
NSQ_neon.h 3 Redistribution and use in source and binary forms, with or without
8 - Redistributions in binary form must reproduce the above copyright
9 notice, this list of conditions and the following disclaimer in the
18 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34 static OPUS_INLINE void silk_short_prediction_create_arch_coef_neon(opus_int32 *out, const opus_int16 *in, opus_int order)
36 out[15] = in[0] << 15;
37 out[14] = in[1] << 15;
38 out[13] = in[2] << 15
    [all...]
  /frameworks/base/core/java/android/bluetooth/
IBluetoothHealth.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
31 boolean registerAppConfiguration(in BluetoothHealthAppConfiguration config,
32 in IBluetoothHealthCallback callback);
33 boolean unregisterAppConfiguration(in BluetoothHealthAppConfiguration config);
34 boolean connectChannelToSource(in BluetoothDevice device, in BluetoothHealthAppConfiguration config);
35 boolean connectChannelToSink(in BluetoothDevice device, in BluetoothHealthAppConfiguration config,
37 boolean disconnectChannel(in BluetoothDevice device, in BluetoothHealthAppConfiguration config, int id)
    [all...]
  /frameworks/base/core/java/android/content/pm/
IOnAppsChangedListener.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
26 void onPackageRemoved(in UserHandle user, String packageName);
27 void onPackageAdded(in UserHandle user, String packageName);
28 void onPackageChanged(in UserHandle user, String packageName);
29 void onPackagesAvailable(in UserHandle user, in String[] packageNames, boolean replacing);
30 void onPackagesUnavailable(in UserHandle user, in String[] packageNames, boolean replacing);
31 void onPackagesSuspended(in UserHandle user, in String[] packageNames)
    [all...]
  /frameworks/base/core/java/android/service/carrier/
ICarrierMessagingService.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
40 in MessagePdu pdu, String format, int destPort, int subId,
41 in ICarrierMessagingCallback callback);
55 in ICarrierMessagingCallback callback);
69 void sendDataSms(in byte[] data, int subId, String destAddress, int destPort,
70 int sendSmsFlag, in ICarrierMessagingCallback callback);
83 void sendMultipartTextSms(in List<String> parts, int subId, String destAddress,
84 int sendSmsFlag, in ICarrierMessagingCallback callback);
97 void sendMms(in Uri pduUri, int subId, in Uri location
    [all...]
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsUtListener.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
33 void utConfigurationUpdated(in IImsUt ut, int id);
34 void utConfigurationUpdateFailed(in IImsUt ut, int id, in ImsReasonInfo error);
39 void utConfigurationQueried(in IImsUt ut, int id, in Bundle ssInfo);
40 void utConfigurationQueryFailed(in IImsUt ut, int id, in ImsReasonInfo error);
45 void utConfigurationCallBarringQueried(in IImsUt ut
    [all...]
  /system/netd/server/binder/android/net/
INetd.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
41 boolean firewallReplaceUidChain(String chainName, boolean isWhitelist, in int[] uids);
46 * - When disabled, all packets to/from apps in the penalty box chain are rejected on costly
48 * - When enabled, only apps that are in the happy box chain and not in the penalty box chain
51 * traffic from system UIDs, place them in the penalty box chain.
79 * @throws ServiceSpecificException in case of failure, with an error code corresponding to the
82 void networkRejectNonSecureVpn(boolean add, in UidRange[] uidRanges);
87 void socketDestroy(in UidRange[] uidRanges, in int[] exemptUids)
    [all...]
  /external/objenesis/main/src/main/java/org/objenesis/instantiator/sun/
MagicInstantiator.java 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
114 * Will generate the bytes for a class extending the type passed in parameter. This class will
125 DataOutputStream in = null; local
128 in = new DataOutputStream(bIn);
130 in.write(MAGIC);
131 in.write(VERSION);
132 in.writeShort(CONSTANT_POOL_COUNT);
137 in.writeByte(CONSTANT_Class);
138 in.writeShort(INDEX_UTF8_INSTANTIATOR_CLASS)
    [all...]
  /frameworks/base/core/java/android/app/
IActivityManager.aidl 5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
84 // Since these transactions are also called from native code, these must be kept in sync with
85 // the ones in frameworks/native/include/binder/IActivityManager.h
87 ParcelFileDescriptor openContentUri(in String uriString);
91 void handleApplicationCrash(in IBinder app,
92 in ApplicationErrorReport.ParcelableCrashInfo crashInfo);
93 int startActivity(in IApplicationThread caller, in String callingPackage, in Intent intent
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/
ContentTypeDetector.java 42 private final InputStream in; field in class:ContentTypeDetector
51 * @param in
56 public ContentTypeDetector(final InputStream in) throws IOException {
57 if (in.markSupported()) {
58 this.in = in;
60 this.in = new BufferedInputStream(in, BUFFER_SIZE);
62 this.in.mark(BUFFER_SIZE);
63 this.type = determineType(this.in);
    [all...]
  /external/toybox/toys/other/
free.c 1 /* free.c - Display amount of free and used memory in the system.
5 // Flag order is signifcant: b-t are units in order, FLAG_h-1 is unit mask
43 struct sysinfo in; local
45 sysinfo(&in);
46 TT.units = in.mem_unit ? in.mem_unit : 1;
53 "Swap:%16s%12s%12s\n", convert(in.totalram),
54 convert(in.totalram-in.freeram), convert(in.freeram), convert(in.sharedram)
    [all...]
  /external/ims/rcs/rcsmanager/src/java/com/android/ims/internal/
IRcsPresence.aidl 5 * Redistribution and use in source and binary forms, with or without
9 * - Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
19 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MOTOROLA MOBILITY LLC BE LIABLE
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68 int requestCapability(in List<String> contactsNumber,
69 in IRcsPresenceListener listener);
101 int requestAvailability(in String contactNumber, in IRcsPresenceListener listener)
    [all...]

Completed in 1939 milliseconds

1 2 3 4 5 67 8 91011>>