PageRenderTime 139ms queryTime 34ms sortTime 0ms getByIdsTime 4ms findMatchingLines 2ms

4+ results for 'while (*d++ = *s++);' (139 ms)

Not the results you expected?
MIDLWrapper.cpp https://github.com/weissms/owb-mirror.git | C++ | 86 lines
                    
60    wchar_t* s = envp[pathIndex];
                    
61    while (s < afterLeadingSemiColon)
                    
62        *d++ = *s++;
                    
65    s = trailingSemiColon;
                    
66    while (*d++ = *s++);
                    
67
                    
                
mxml.cxx https://bitbucket.org/muegamma/rome3.git | C++ | 2373 lines
                    
141      do {
                    
142         if ((*d++ = *s++) == 0)
                    
143            break;
                    
143            break;
                    
144      } while (--n != 0);
                    
145   }
                    
150         *d = '\0';             /* NUL-terminate dst */
                    
151      while (*s++);
                    
152   }
                    
356   p = str;
                    
357   while ((p = strchr(p, '&')) != NULL) {
                    
358      if (strncmp(p, "&lt;", 4) == 0) {
                    
                
strlcpy.cxx https://bitbucket.org/muegamma/rome3.git | C++ | 101 lines
                    
47      do {
                    
48         if ((*d++ = *s++) == 0)
                    
49            break;
                    
49            break;
                    
50      } while (--n != 0);
                    
51   }
                    
56         *d = '\0';             /* NUL-terminate dst */
                    
57      while (*s++);
                    
58   }
                    
79   /* Find the end of dst and adjust bytes left but don't go past end */
                    
80   while (n-- != 0 && *d != '\0')
                    
81      d++;
                    
86      return (dlen + strlen(s));
                    
87   while (*s != '\0') {
                    
88      if (n != 1) {
                    
                
inspstring.cpp https://github.com/thepaul/inspircd-deb.git | C++ | 138 lines
                    
51
                    
52	while (n-- != 0 && *d != '\0')
                    
53		d++;
                    
60
                    
61	while (*s != '\0')
                    
62	{
                    
86		{
                    
87			if ((*d++ = *s++) == 0)
                    
88				break;
                    
88				break;
                    
89		} while (--n != 0);
                    
90	}
                    
96			*d = '\0'; /* NUL-terminate dst */
                    
97		while (*s++);
                    
98	}
                    
                
 

Source

Language