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

1 2 3

  /external/skia/include/utils/
SkParse.h 25 static int Count(const char str[]); // number of scalars or int values
26 static int Count(const char str[], char separator);
33 static const char* FindScalars(const char str[], SkScalar value[], int count);
  /external/libnfc-nxp/src/
phHal4Nfc_ADD.c 437 /*Count is used to add multiple info into remote dvice list for devices that
439 uint8_t Count = 0,
466 Count++;
479 aRemoteDevTypes[Count] = phHal_eMifare_PICC;
480 Count++;
483 if((0 == Sak)&& (0 == Count))
491 aRemoteDevTypes[Count] = phHal_eMifare_PICC;
496 aRemoteDevTypes[Count] = phHal_eISO14443_3A_PICC;
498 Count++;
501 !(Sak & NFCIP_BITMASK) && (0 == Count))
    [all...]
phFriNfc_NdefRecord.c 100 uint32_t Count = 0,
210 if(Count >= *NumberOfRawRecords)
217 RawRecords[Count] = Buffer;
249 IsChunked [Count] = PHFRINFCNDEFRECORD_CHUNKBIT_SET;
253 IsChunked [Count] = PHFRINFCNDEFRECORD_CHUNKBIT_SET_ZERO;
258 if (Count > 0)
282 if (IsChunked [Count - 1] == PHFRINFCNDEFRECORD_CHUNKBIT_SET &&
294 if (IsChunked [Count - 1] == PHFRINFCNDEFRECORD_CHUNKBIT_SET_ZERO &&
305 if (IsChunked [Count - 1] == PHFRINFCNDEFRECORD_CHUNKBIT_SET &&
306 IsChunked [Count] == PHFRINFCNDEFRECORD_CHUNKBIT_SET_ZERO
    [all...]
phFriNfc_NdefReg.h 128 uint8_t Count;
132 * The number of records here will be equal to the first parameter Count.
phFriNfc_NdefReg.c 41 static int16_t phFriNfc_NdefReg_Strncmp (const int8_t *s1, const int8_t *s2, uint32_t count);
45 static int16_t phFriNfc_NdefReg_Strncmp (const int8_t *s1, const int8_t *s2, uint32_t count)
47 return (int16_t)strncmp((const char*)s1,(const char*)s2, count);
49 int16_t phFriNfc_NdefReg_Strnicmp(const int8_t *s1, const int8_t *s2, uint32_t count)
63 --count;
65 while ( (c1 == c2) && (c1 != '\0') && (c2 != '\0') && (count > 0) );
67 if ( (count == 0) || (c1 == c2) )
275 uint8_t count = 0, local
352 NdefReg->CbParam->Chunked[count] = (NdefReg->RecordsExtracted->Flags & \
360 (void) memcpy( &NdefReg->CbParam->Records[count],
    [all...]
  /external/clearsilver/python/examples/base/
handle_error.py 15 Count = 0
94 global Count
95 Count = Count + 1
96 fname = "%d.%d_%d.%s" % (now, pid, Count, socket.gethostname())
  /external/chromium/base/
histogram.h 13 // contain (sequentially) the count of values in the following intervals:
17 // Histogram count(L"some name", 1, 64, 8);
205 typedef int Count; // Used to count samples in a bucket.
208 typedef std::vector<Count> Counts;
255 void Accumulate(Sample value, Count count, size_t index);
258 Count counts(size_t i) const { return counts_[i]; }
259 Count TotalCount() const;
271 // Actual histogram data is stored in buckets, showing the count of value
    [all...]
histogram.cc 21 typedef Histogram::Count Count;
122 Count sample_count = snapshot.TotalCount();
155 Count current = snapshot.counts(i);
225 // Calculate the count'th root of the range.
270 double Histogram::GetBucketSize(Count current, size_t i) const {
283 // and I don't believe I can loose more than a count or two.
287 void Histogram::Accumulate(Sample value, Count count, size_t index) {
289 sample_.Accumulate(value, count, index)
    [all...]
  /external/skia/tests/
skia_test.cpp 31 static int Count() {
33 int count = 0; local
35 count += 1;
38 return count;
112 const int count = Iter::Count(); local
116 reporter.setIndexOfTotal(index, count);
123 SkDebugf("Finished %d tests, %d failures.\n", count,
124 count - successCount);
  /frameworks/base/media/libdrm/mobile1/include/parser/
parser_rel.h 61 int32_t Count; /**< The times that can be used */
  /hardware/ti/wlan/wl1271/stad/src/Data_link/
TrafficMonitor.h 105 typedef void (*TraffActionFunc_t)(TI_HANDLE TraffElem,int Count);
TrafficMonitorAPI.h 107 void TrafficMonitor_Event(TI_HANDLE hTrafficMonitor,int Count,TI_UINT16 Mask,TI_UINT32 MonitorModuleType);
TrafficMonitor.c 75 static void SimpleByteAggregation(TI_HANDLE TraffElem,int Count);
76 static void SimpleFrameAggregation(TI_HANDLE TraffElem,int Count);
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/data_ctrl/Ctrl/TrafficMonitor/
TrafficMonitor.h 103 typedef VOID (*TraffActionFunc_t)(TI_HANDLE TraffElem,int Count);
TrafficMonitorAPI.h 107 VOID TrafficMonitor_Event(TI_HANDLE hTrafficMonitor,int Count,UINT16 Mask,UINT32 MonitorModuleType);
TrafficMonitor.c 73 static VOID SimpleByteAggregation(TI_HANDLE TraffElem,int Count);
74 static VOID SimpleFrameAggregation(TI_HANDLE TraffElem,int Count);
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Data_link/
TrafficMonitor.h 105 typedef void (*TraffActionFunc_t)(TI_HANDLE TraffElem,int Count);
TrafficMonitorAPI.h 107 void TrafficMonitor_Event(TI_HANDLE hTrafficMonitor,int Count,TI_UINT16 Mask,TI_UINT32 MonitorModuleType);
  /external/zlib/contrib/delphi/
ZLib.pas 91 function Read(var Buffer; Count: Longint): Longint; override;
92 function Write(const Buffer; Count: Longint): Longint; override;
120 function Read(var Buffer; Count: Longint): Longint; override;
121 function Write(const Buffer; Count: Longint): Longint; override;
228 procedure _memset(P: Pointer; B: Byte; count: Integer); cdecl;
230 FillChar(P^, count, B);
233 procedure _memcpy(dest, source: Pointer; count: Integer); cdecl;
235 Move(source^, dest^, count);
439 function TCompressionStream.Read(var Buffer; Count: Longint): Longint;
444 function TCompressionStream.Write(const Buffer; Count: Longint): Longint
    [all...]
  /external/clearsilver/imd/
imd.cs 22 <TITLE><?cs var:Title ?><?cs if:Context == "album" ?> <?cs var:Album.Raw ?> <?cs var:Album.Start + #1 ?> - <?cs var:Album.Next ?> of <?cs var:Album.Count ?><?cs else ?> <?cs var:Album.Raw ?>
41 <a href="<?cs var:CGI.PathInfo?>?album=<?cs if:Album ?><?cs var:Album ?>/<?cs /if ?><?cs var:album ?>"><?cs var:album ?></a></font> (<?cs var:album.Count ?> images)
69 <?cs if:#Album.Count ?>
83 <?cs var:#Album.Start + #1 ?> - <?cs var:#Album.Next ?> of <?cs var:#Album.Count ?>
85 <?cs if:#Album.Next < #Album.Count ?>
121 <?cs var:#Album.Start + #1 ?> - <?cs var:#Album.Next ?> of <?cs var:#Album.Count ?>
123 <?cs if:#Album.Next < #Album.Count ?>
138 <?cs set:count = #0 ?>
141 <?cs if:count == #0 ?>
143 <?cs elif:count == #1 ?
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/epoc/
SDL_syssem.cpp 43 TInt count; member in struct:SDL_semaphore
66 sem->count = initial_value;
77 sema.Signal(sema.Count());
115 while(sem->count < 0)
160 if(sem->count > 0)
162 sem->count--;
172 /* Returns the current count of the semaphore */
179 return sem->count;
188 sem->count++;
  /external/skia/src/utils/
SkParse.cpp 73 int SkParse::Count(const char str[])
76 int count = 0; local
79 count++;
91 return count;
94 int SkParse::Count(const char str[], char separator)
97 int count = 0; local
100 count++;
112 return count;
267 const char* SkParse::FindScalars(const char str[], SkScalar value[], int count)
269 SkASSERT(count >= 0)
    [all...]
  /hardware/ti/wlan/wl1271/platforms/os/linux/src/
osmemapi.c 441 Count - Number of characters
455 TI_INT32 Count
458 return memcmp(Buf1, Buf2, Count);
  /system/wlan/ti/sta_dk_4_0_4_32/pform/linux/src/
osmemapi.c 465 Count - Number of characters
479 INT32 Count
482 return memcmp(Buf1, Buf2, Count);
  /system/wlan/ti/wilink_6_1/platforms/os/linux/src/
osmemapi.c 440 Count - Number of characters
454 TI_INT32 Count
457 return memcmp(Buf1, Buf2, Count);

Completed in 1145 milliseconds

1 2 3