Lines Matching defs:Count

1060     \param Count   number of members in Rects
1064 U_PMF_RECTF *rectfs_transform(U_PMF_RECTF *Rects, int Count, U_XFORM Xform){
1067 newRects = (U_PMF_RECTF *) malloc(Count * sizeof(U_PMF_RECTF));
1069 for(i=0; i<Count; i++){
1244 \brief Calculate the length in bytes of objects which are a 4 byte Count followed by Count * float bytes
1826 \param Count Number of CHILD nodes. This is one less than the total number of U_PMF_REGIONNODE objects in Nodes.
1831 U_PSEUDO_OBJ *U_PMF_REGION_set(uint32_t Version, uint32_t Count, const U_PSEUDO_OBJ *Nodes){
1835 {&Count, 4, 1, U_LE},
1923 \param Count Number of entries in Colors
1928 U_PSEUDO_OBJ *U_PMF_ARGBN_set(uint32_t Count, U_PMF_ARGB *Colors){
1930 {&Count, 4, 1, U_LE},
1931 {Colors, 4, Count, U_XE},
5536 \param Count Number of points and point types in this object
5545 int U_PMF_PATH_get(const char *contents, uint32_t *Version, uint32_t *Count, uint16_t *Flags,
5547 if(!contents || !Version || !Count || !Flags || !Points || !Types || !blimit){ return(0); }
5550 U_PMF_SERIAL_get(&contents, Count, 4, 1, U_LE);
5555 sizeP = U_PMF_LEN_REL715(contents,*Count); //DEBUG
5556 printf("DEBUG U_PMF_PATH_get count:%d LENREL715:%d\n",*Count,sizeP);fflush(stdout);
5558 else if(*Flags & U_PPF_C){ sizeP = *Count * sizeof(U_PMF_POINT); }
5559 else { sizeP = *Count * sizeof(U_PMF_POINTF); }
5565 sizeT = *Count * sizeof(U_PMF_PATHPOINTTYPE);
5599 \param Count Number of CHILD nodes. This is one less than the total number of U_PMF_REGIONNODE objects in Nodes.
5604 int U_PMF_REGION_get(const char *contents, uint32_t *Version, uint32_t *Count, const char **Nodes, const char *blimit){
5605 if(!contents || !Version || !Count || !Nodes || !blimit){ return(0); }
5608 U_PMF_SERIAL_get(&contents, Count, 4, 1, U_LE);
5986 \param Count must be 2
5992 int U_PMF_FOCUSSCALEDATA_get(const char *contents, uint32_t *Count, U_FLOAT *ScaleX, U_FLOAT *ScaleY, const char *blimit){
5993 if(!contents || !Count || !ScaleX || !ScaleY || !blimit){ return(0); }
5995 U_PMF_SERIAL_get(&contents, Count, 4, 1, U_LE);
5996 if(*Count != 2){ return(0); }