Searched defs:count (Results 51 - 75 of 519) sorted by last modified time

1234567891011>>

/frameworks/rs/cpp/
H A DType.cpp51 uint32_t count = x * y * z * faces; local
63 count += x * y * z * faces;
65 mElementCount = count;
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsics_x86.cpp81 const short *coef, uint32_t count) {
98 for (i = 0; i < count; ++i) {
143 const short *coef, uint32_t count) {
165 for (i = 0; i < count; ++i) {
198 const short *coef, uint32_t count) {
221 for (i = 0; i < count; ++i) {
252 const short *coef, uint32_t count) {
277 for (i = 0; i < count; ++i) {
412 uint32_t count, const short *param) {
430 for (i = 0; i < (count <<
79 rsdIntrinsicConvolve3x3_K(void *dst, const void *y0, const void *y1, const void *y2, const short *coef, uint32_t count) argument
142 rsdIntrinsicColorMatrix4x4_K(void *dst, const void *src, const short *coef, uint32_t count) argument
197 rsdIntrinsicColorMatrix3x3_K(void *dst, const void *src, const short *coef, uint32_t count) argument
251 rsdIntrinsicColorMatrixDot_K(void *dst, const void *src, const short *coef, uint32_t count) argument
410 rsdIntrinsicYuv_K(void *dst, const unsigned char *pY, const unsigned char *pUV, uint32_t count, const short *param) argument
472 rsdIntrinsicYuvR_K(void *dst, const unsigned char *pY, const unsigned char *pUV, uint32_t count, const short *param) argument
534 rsdIntrinsicYuv2_K(void *dst, const unsigned char *pY, const unsigned char *pU, const unsigned char *pV, uint32_t count, const short *param) argument
596 rsdIntrinsicConvolve5x5_K(void *dst, const void *y0, const void *y1, const void *y2, const void *y3, const void *y4, const short *coef, uint32_t count) argument
[all...]
H A DrsCpuScriptGroup.h42 size_t count; member in struct:android::renderscript::CpuScriptGroupImpl::ScriptList
/frameworks/rs/driver/
H A DrsdAllocation.cpp871 uint32_t xoff, uint32_t lod, size_t count,
877 size_t size = count * eSize;
882 alloc->incRefs(data, count);
883 alloc->decRefs(ptr, count);
992 uint32_t xoff, uint32_t lod, size_t count,
999 memcpy(data, ptr, count * eSize);
1074 uint32_t dstXoff, uint32_t dstLod, size_t count,
870 rsdAllocationData1D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t lod, size_t count, const void *data, size_t sizeBytes) argument
991 rsdAllocationRead1D(const Context *rsc, const Allocation *alloc, uint32_t xoff, uint32_t lod, size_t count, void *data, size_t sizeBytes) argument
1072 rsdAllocationData1D_alloc(const android::renderscript::Context *rsc, const android::renderscript::Allocation *dstAlloc, uint32_t dstXoff, uint32_t dstLod, size_t count, const android::renderscript::Allocation *srcAlloc, uint32_t srcXoff, uint32_t srcLod) argument
H A DrsdRuntimeStubs.cpp194 uint32_t dstOff, uint32_t dstMip, uint32_t count,
201 count, (Allocation *)srcAlloc.p, srcOff, srcMip);
192 rsAllocationCopy1DRange( ::rs_allocation dstAlloc, uint32_t dstOff, uint32_t dstMip, uint32_t count, ::rs_allocation srcAlloc, uint32_t srcOff, uint32_t srcMip) argument
H A DrsdShader.cpp601 uint32_t *arrayLengths, uint32_t *count,
607 initAddUserElement(ce, names, arrayLengths, count, prefix);
611 names[*count] = tmp;
613 arrayLengths[*count] = e->mHal.state.fieldArraySizes[ct];
615 (*count)++;
600 initAddUserElement(const Element *e, std::string *names, uint32_t *arrayLengths, uint32_t *count, const char *prefix) argument
/frameworks/rs/java/tests/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
H A DBNNMTest.java88 private void addByteNoise(byte[] data, int count, float frequency, int maxDelta) { argument
90 for (int n = 0; n < count; ++n) {
/frameworks/rs/
H A DrsAllocation.cpp193 uint32_t count, const void *data, size_t sizeBytes) {
196 if ((count * eSize) != sizeBytes) {
199 (count * eSize), sizeBytes);
205 rsc->mHal.funcs.allocation.data1D(rsc, this, xoff, lod, count, data, sizeBytes);
223 uint32_t count, void *data, size_t sizeBytes) {
226 if ((count * eSize) != sizeBytes) {
229 (count * eSize), sizeBytes);
235 rsc->mHal.funcs.allocation.read1D(rsc, this, xoff, lod, count, data, sizeBytes);
501 uint32_t count = dataSize / type->getElementSizeBytes(); local
503 alloc->data(rsc, 0, 0, count, strea
192 data(Context *rsc, uint32_t xoff, uint32_t lod, uint32_t count, const void *data, size_t sizeBytes) argument
222 read(Context *rsc, uint32_t xoff, uint32_t lod, uint32_t count, void *data, size_t sizeBytes) argument
723 rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, uint32_t count, const void *data, size_t sizeBytes) argument
937 rsi_Allocation1DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, uint32_t count, void *data, size_t sizeBytes) argument
[all...]
H A DrsElement.cpp275 ObjectBaseRef<const Element> Element::createRef(Context *rsc, size_t count, const Element **ein, argument
283 if (ee->getFieldCount() == count) {
285 for (uint32_t i=0; i < count; i++) {
323 e->mFields = new ElementField_t [count];
324 e->mFieldCount = count;
325 for (size_t ct=0; ct < count; ct++) {
H A DrsElement.h108 static ObjectBaseRef<const Element> createRef(Context *rsc, size_t count,
123 static const Element* create(Context *rsc, size_t count, argument
128 ObjectBaseRef<const Element> elem = createRef(rsc, count, ein, nin, lengths, asin);
H A DrsScriptC_Lib.cpp259 uint32_t count,
263 dstMip, 0, count, 1,
256 rsrAllocationCopy1DRange(Context *rsc, Allocation *dstAlloc, uint32_t dstOff, uint32_t dstMip, uint32_t count, Allocation *srcAlloc, uint32_t srcOff, uint32_t srcMip) argument
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZonePickerView.java130 public void beforeTextChanged(CharSequence s, int start, int count, int after) { argument
135 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
/frameworks/opt/net/voip/src/jni/rtp/
H A DAmrCodec.cpp55 int decode(int16_t *samples, int count, void *payload, int length);
131 int AmrCodec::decode(int16_t *samples, int /* count */, void *payload, int length)
216 int decode(int16_t *samples, int count, void *payload, int length);
242 int GsmEfrCodec::decode(int16_t *samples, int count, void *payload, int length) argument
246 while (n + 160 <= count && length >= 31 && (bytes[0] >> 4) == 0x0C) {
H A DAudioGroup.cpp396 int count = (BUFFER_SIZE - (mBufferTail - mBufferHead)) * mSampleRate; local
397 if (count < mSampleCount) {
405 int16_t samples[count];
408 count = recv(mSocket, samples, sizeof(samples),
434 length = mCodec->decode(samples, count, &buffer[offset], length);
440 count = length;
442 if (count <= 0) {
464 for (int i = 0; i < count; ++i) {
728 int count = 0; local
737 ++count;
[all...]
H A DG711Codec.cpp42 int decode(int16_t *samples, int count, void *payload, int length);
67 int UlawCodec::decode(int16_t *samples, int count, void *payload, int length) argument
70 if (length > count) {
71 length = count;
93 int decode(int16_t *samples, int count, void *payload, int length);
117 int AlawCodec::decode(int16_t *samples, int count, void *payload, int length) argument
120 if (length > count) {
121 length = count;
H A DGsmCodec.cpp47 int decode(int16_t *samples, int count, void *payload, int length);
60 int GsmCodec::decode(int16_t *samples, int count, void *payload, int length) argument
64 while (n + 160 <= count && length >= 33 &&
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiMetrics.java538 * Increment Non Empty Scan Results count
548 * Increment Empty Scan Results count
558 * Increment background scan count
568 * Get Background scan count
577 * Increment oneshot scan count, and the associated WifiSystemScanStateCount entry
587 * Get oneshot scan count
613 * Increment count of scan return code occurrence
626 * Get the count of this scanReturnCode
627 * @param scanReturnCode that we are getting the count for
651 * Increments the count o
690 addCountToNumLastResortWatchdogBadAssociationNetworksTotal(int count) argument
698 addCountToNumLastResortWatchdogBadAuthenticationNetworksTotal(int count) argument
706 addCountToNumLastResortWatchdogBadDhcpNetworksTotal(int count) argument
714 addCountToNumLastResortWatchdogBadOtherNetworksTotal(int count) argument
722 addCountToNumLastResortWatchdogAvailableNetworksTotal(int count) argument
[all...]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiMetricsTest.java319 * Assert deserialized metrics Scan Return Entry equals count
321 public void assertScanReturnEntryEquals(int returnCode, int count) { argument
324 assertEquals(mDeserializedWifiMetrics.scanReturnEntries[i].scanResultsCount, count);
328 assertEquals(null, count);
332 * Assert deserialized metrics SystemState entry equals count
334 public void assertSystemStateEntryEquals(int state, boolean screenOn, int count) { argument
339 count);
343 assertEquals(null, count);
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsConnectionStateListener.java74 * Called when waiting voice message count changes.
76 public void onVoiceMessageCountChanged(int count) { argument
H A DImsManager.java1374 public void voiceMessageCountUpdate(int count) { argument
1375 log("voiceMessageCountUpdate :: count=" + count);
1378 mListener.onVoiceMessageCountChanged(count);
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java584 // Here the current suggestion count is still the old one since we update
585 // the count at the bottom of this function.
595 // Here the current suggestion count is still the old one since we update
596 // the count at the bottom of this function.
2139 private MoreImageSpan createMoreSpan(int count) { argument
2140 String moreText = String.format(mMoreItem.getText().toString(), count);
2171 // Now, count total addresses.
2628 public void onTextChanged(CharSequence s, int start, int before, int count) { argument
2632 if (before - count == 1) {
2654 } else if (count > befor
2666 beforeTextChanged(CharSequence s, int start, int count, int after) argument
[all...]
/frameworks/native/cmds/installd/
H A Dcommands.cpp622 int count = 0; local
629 count++;
633 return count;
639 int count = 0; local
644 argv[count++] = tok;
648 return count;
H A Dglobals.h34 size_t count; member in struct:android::installd::dir_rec_array_t

Completed in 1612 milliseconds

1234567891011>>