Searched refs:count (Results 1 - 25 of 525) sorted by relevance

1234567891011>>

/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/hdr/
H A Dlibmem.h80 #define smlLibMemset(pObject,value,count) ((void)MemSet((VoidPtr_t)pObject,(MemSize_t)count,(int)value))
81 #define smlLibMemcpy(pTarget,pSource,count) (MemMove(pTarget,(VoidPtr_t)pSource,count) ? pTarget : pTarget)
82 #define smlLibMemmove(pTarget,pSource,count) (MemMove(pTarget,(VoidPtr_t)pSource,(MemSize_t)count) ? pTarget : pTarget)
83 #define smlLibMemcmp(pTarget,pSource,count) (MemCmp((VoidPtr_t)pTarget,(VoidPtr_t)pSource,(MemSize_t)count))
89 SML_API_DEF void *smlLibMemset(void *pObject, int value, MemSize_t count);
90 SML_API_DEF void *smlLibMemcpy(void *pTarget, const void *pSource, MemSize_t count);
[all...]
H A Dlibstr.h76 #define smlLibStrncpy(pTarget,pSource,count) (char*)StrNCopy((char*)pTarget,(char*)pSource,count)
79 #define smlLibStrncmp(pTarget,pSource,count) StrNCompare((char*)pTarget,(char*)pSource,count)
85 SML_API_DEF String_t smlLibStrncpy(const char *pTarget, const char *pSource, int count);
88 SML_API_DEF int smlLibStrncmp(const char *pTarget, const char *pSource, int count);
102 #define smlLibStrncat(pTarget,pSource,count) (char*)StrNCat((char*)pTarget,(char*)pSource,count)
105 SML_API_DEF String_t smlLibStrncat(const char *pTarget, const char *pSource, int count);
H A Dmd5.h50 UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */ member in struct:__anon95
/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/sml/lib/hdr/
H A Dlibmem.h80 #define smlLibMemset(pObject,value,count) ((void)MemSet((VoidPtr_t)pObject,(MemSize_t)count,(int)value))
81 #define smlLibMemcpy(pTarget,pSource,count) (MemMove(pTarget,(VoidPtr_t)pSource,count) ? pTarget : pTarget)
82 #define smlLibMemmove(pTarget,pSource,count) (MemMove(pTarget,(VoidPtr_t)pSource,(MemSize_t)count) ? pTarget : pTarget)
83 #define smlLibMemcmp(pTarget,pSource,count) (MemCmp((VoidPtr_t)pTarget,(VoidPtr_t)pSource,(MemSize_t)count))
89 SML_API_DEF void *smlLibMemset(void *pObject, int value, MemSize_t count);
90 SML_API_DEF void *smlLibMemcpy(void *pTarget, const void *pSource, MemSize_t count);
[all...]
H A Dlibstr.h76 #define smlLibStrncpy(pTarget,pSource,count) (char*)StrNCopy((char*)pTarget,(char*)pSource,count)
79 #define smlLibStrncmp(pTarget,pSource,count) StrNCompare((char*)pTarget,(char*)pSource,count)
85 SML_API_DEF String_t smlLibStrncpy(const char *pTarget, const char *pSource, int count);
88 SML_API_DEF int smlLibStrncmp(const char *pTarget, const char *pSource, int count);
102 #define smlLibStrncat(pTarget,pSource,count) (char*)StrNCat((char*)pTarget,(char*)pSource,count)
105 SML_API_DEF String_t smlLibStrncat(const char *pTarget, const char *pSource, int count);
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
H A DCountingOutputStream.java33 /** The count of bytes that have passed. */
34 private long count; field in class:CountingOutputStream
48 * keeping count of the number of bytes written.
55 count += b.length;
61 * keeping count of the number of bytes written.
70 count += len;
75 * Writes a single byte to the output stream adding to the count of the
83 count++;
92 * count is greater than can be expressed by an <code>int</code>.
96 * @throws ArithmeticException if the byte count i
[all...]
/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/sml/lib/src/
H A Dlibmem.c156 SML_API void *smlLibMemset(void *pObject, int value, MemSize_t count){ argument
157 return memset(pObject, value, count);
159 SML_API void *smlLibMemcpy(void *pTarget, const void *pSource, MemSize_t count){ argument
160 return memcpy(pTarget, pSource, count);
162 SML_API void *smlLibMemmove(void *pTarget, const void *pSource, MemSize_t count){ argument
163 return memmove(pTarget, pSource, count);
165 SML_API int smlLibMemcmp(const void *pTarget, const void *pSource, MemSize_t count){ argument
166 return memcmp(pTarget, pSource, count);
H A Dlibstr.c101 SML_API String_t smlLibStrncpy(const char *pTarget, const char *pSource, int count){ argument
102 return strncpy((char *)pTarget, (char *)pSource, count);
110 SML_API int smlLibStrncmp(const char *pTarget, const char *pSource, int count){ argument
111 return strncmp((char *)pTarget, (char *)pSource, count);
131 SML_API String_t smlLibStrncat(const char *pTarget, const char *pSource, int count){ argument
132 return strncat((char *)pTarget, (char *)pSource, count);
/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/src/
H A Dlibmem.c156 SML_API void *smlLibMemset(void *pObject, int value, MemSize_t count){ argument
157 return memset(pObject, value, count);
159 SML_API void *smlLibMemcpy(void *pTarget, const void *pSource, MemSize_t count){ argument
160 return memcpy(pTarget, pSource, count);
162 SML_API void *smlLibMemmove(void *pTarget, const void *pSource, MemSize_t count){ argument
163 return memmove(pTarget, pSource, count);
165 SML_API int smlLibMemcmp(const void *pTarget, const void *pSource, MemSize_t count){ argument
166 return memcmp(pTarget, pSource, count);
H A Dlibstr.c101 SML_API String_t smlLibStrncpy(const char *pTarget, const char *pSource, int count){ argument
102 return strncpy((char *)pTarget, (char *)pSource, count);
110 SML_API int smlLibStrncmp(const char *pTarget, const char *pSource, int count){ argument
111 return strncmp((char *)pTarget, (char *)pSource, count);
131 SML_API String_t smlLibStrncat(const char *pTarget, const char *pSource, int count){ argument
132 return strncat((char *)pTarget, (char *)pSource, count);
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
H A DCountingInputStream.java34 /** The count of bytes that have passed. */
35 private long count; field in class:CountingInputStream
48 * Reads a number of bytes into the byte array, keeping count of the
58 this.count += (found >= 0) ? found : 0;
64 * keeping count of the number read.
75 this.count += (found >= 0) ? found : 0;
80 * Reads the next byte of data adding to the count of bytes received
89 this.count += (found >= 0) ? 1 : 0;
95 * amount to the count.
104 this.count
[all...]
H A DCharSequenceReader.java106 int count = 0;
110 return count;
113 count++;
115 return count;
141 int count = dest - idx;
143 return count;
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DCountingOutputStream.java24 * makes that count available to callers.
39 public void write(byte[] buffer, int offset, int count) throws IOException { argument
40 mOutputStream.write(buffer, offset, count);
41 mCount += count;
/packages/apps/Gallery2/src/com/android/photos/data/
H A DAlbumSetLoader.java30 private static MatrixCursor createRandomCursor(int count) { argument
31 MatrixCursor c = new MatrixCursor(PROJECTION, count);
32 for (int i = 0; i < count; i++) {
/packages/apps/OMA-DM/engine/dmlib/tool-src/db_wizard_tool/com/mot/dm/dbtool/
H A DByteArray.java15 int count = 0;
18 newBytes[count++] = bytes[i];
21 newBytes[count++] = b[i];
/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/sml/xpt/hdr/
H A Dmd5.h40 UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */ member in struct:__anon121
/packages/apps/OMA-DM/engine/dmlib/tool-src/servercred/hdr/
H A Dmd5.h40 UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */ member in struct:__anon157
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DMailObservable.java36 final int count = mObservers.size();
39 mName, observer, count, mObservers.size());
44 final int count = mObservers.size();
47 mName, observer, count, mObservers.size());
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DComboAlbum.java42 public ArrayList<MediaItem> getMediaItem(int start, int count) { argument
46 if (count < 1) break;
48 int fetchCount = (start + count <= size) ? count : size - start;
51 count -= fetchItems.size();
62 int count = 0;
64 count += set.getMediaItemCount();
66 return count;
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
H A Dhistorical_info.h30 HistoricalInfo(const int timestamp, const int level, const int count) argument
31 : mTimestamp(timestamp), mLevel(level), mCount(count) {}
/packages/apps/OMA-DM/engine/dmlib/portlib/lj/hdr/
H A DdmStringUtil.h15 #define DmStrncpy(target, source, count) strncpy(target, source, count)
19 #define DmStrncat(target, source, count) strncat(target, source, count)
23 #define DmStrncmp(target, source, count) strncmp(target, source, count)
/packages/apps/OMA-DM/engine/xpl/hdr/
H A DdmStringUtil.h15 #define DmStrncpy(target, source, count) strncpy(target, source, count)
19 #define DmStrncat(target, source, count) strncat(target, source, count)
25 #define DmStrncmp(target, source, count) strncmp(target, source, count)
H A Dxpl_StringUtil.h41 #define xplStrncpy(target, source, count) strncpy(target, source, count)
47 #define xplStrncat(target, source, count) strncat(target, source, count)
53 #define xplStrncmp(target, source, count) strncmp(target, source, count)
/packages/apps/LegacyCamera/src/com/android/camera/
H A DExif.java83 int count = pack(jpeg, offset + 4, 4, littleEndian) + 2;
84 if (count < 10 || count > length) {
88 offset += count;
89 length -= count;
91 // Get the count and go through all the elements.
92 count = pack(jpeg, offset - 2, 2, littleEndian);
93 while (count-- > 0 && length >= 12) {
97 // We do not really care about type and count, do we?
/packages/apps/OMA-DM/engine/dmlib/dmengine/dm_persist/hdr/
H A DSyncML_DM_FileHandle.H53 /* Reads count bytes into buffer */
54 inline SYNCML_DM_RET_STATUS_T read(UINT8* buffer, UINT16 count) {return read((char*)( buffer ), count);} argument
55 SYNCML_DM_RET_STATUS_T read(char* buffer, UINT16 count);
57 /* Writes count bytes into the buffer/file
61 inline SYNCML_DM_RET_STATUS_T write(const UINT8* buffer, UINT16 count) {return write((const char*)( buffer ), count);} argument
62 SYNCML_DM_RET_STATUS_T write(const char* buffer, UINT16 count);
136 /* Writes count bytes into the file.
138 SYNCML_DM_RET_STATUS_T writeBuffer(const char* buffer, UINT16 count);
[all...]

Completed in 470 milliseconds

1234567891011>>