Lines Matching refs:num
127 int num = 0;
130 ++num;
135 ++num;
137 if (num == 0) {
140 char **strs = (char **)calloc(num + 1, sizeof(char *));
145 num = 0;
149 strs[num] = (char *)calloc(strLen, sizeof(char));
150 if (strs[num] == nullptr || strncpy_s(strs[num], strLen, pos, p - pos) != EOK) {
154 ++num;
160 strs[num] = (char *)calloc(strLen, sizeof(char));
161 if (strs[num] == nullptr || strncpy_s(strs[num], strLen, pos, strlen(pos)) != EOK) {
176 int num = 0;
177 while (strs[num] != nullptr) {
178 ++num;
182 if (num < BINDING_STRING_SIZE) {
203 if (num >= BINDING_STRING_MAX_SIZE) {