remainder          30 daemons/schedulerd/pacemaker-schedulerd.c     gchar **remainder;
remainder          54 daemons/schedulerd/pacemaker-schedulerd.c         { G_OPTION_REMAINING, 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING_ARRAY, &options.remainder,
remainder          97 daemons/schedulerd/pacemaker-schedulerd.c     if (options.remainder) {
remainder          98 daemons/schedulerd/pacemaker-schedulerd.c         if (g_strv_length(options.remainder) == 1 &&
remainder          99 daemons/schedulerd/pacemaker-schedulerd.c             pcmk__str_eq("metadata", options.remainder[0], pcmk__str_casei)) {
remainder         149 daemons/schedulerd/pacemaker-schedulerd.c     g_strfreev(options.remainder);
remainder        1030 lib/common/patchset.c     char *remainder;
remainder        1044 lib/common/patchset.c     remainder = calloc(key_len, sizeof(char));
remainder        1045 lib/common/patchset.c     CRM_ASSERT(remainder != NULL);
remainder        1058 lib/common/patchset.c         rc = sscanf(current, "/%[^/]%s", section, remainder);
remainder        1085 lib/common/patchset.c             current = remainder;
remainder        1099 lib/common/patchset.c     free(remainder);
remainder         815 lib/common/strings.c     char *remainder = NULL;
remainder         831 lib/common/strings.c         int rc = scan_ll(srcstring+1, end, PCMK__PARSE_INT_DEFAULT, &remainder);
remainder         833 lib/common/strings.c         if (rc != pcmk_rc_ok || *remainder != '\0') {
remainder         841 lib/common/strings.c                 &remainder) != pcmk_rc_ok) {
remainder         845 lib/common/strings.c     if (*remainder && *remainder == '-') {
remainder         846 lib/common/strings.c         if (*(remainder+1)) {
remainder         848 lib/common/strings.c             int rc = scan_ll(remainder+1, end, PCMK__PARSE_INT_DEFAULT,
remainder         855 lib/common/strings.c     } else if (*remainder && *remainder != '-') {
remainder        1931 maint/gnulib/lib/math.in.h _GL_FUNCDECL_RPL (remainder, double, (double x, double y));
remainder        1932 maint/gnulib/lib/math.in.h _GL_CXXALIAS_RPL (remainder, double, (double x, double y));
remainder        1935 maint/gnulib/lib/math.in.h _GL_FUNCDECL_SYS (remainder, double, (double x, double y));
remainder        1937 maint/gnulib/lib/math.in.h _GL_CXXALIAS_SYS (remainder, double, (double x, double y));
remainder        1940 maint/gnulib/lib/math.in.h _GL_CXXALIASWARN1 (remainder, double, (double x, double y));
remainder        1945 maint/gnulib/lib/math.in.h _GL_WARN_ON_USE (remainder, "remainder is unportable - "
remainder          32 maint/gnulib/lib/remainder.c # define REMAINDER remainder
remainder          27 maint/gnulib/lib/remainderf.c   return (float) remainder ((double) x, (double) y);
remainder          27 maint/gnulib/lib/remainderl.c   return remainder (x, y);
remainder         606 maint/gnulib/lib/vasnprintf.c         mp_limb_t remainder = 0;
remainder         613 maint/gnulib/lib/vasnprintf.c               ((mp_twolimb_t) remainder << GMP_LIMB_BITS) | *--sourceptr;
remainder         615 maint/gnulib/lib/vasnprintf.c             remainder = num % den;
remainder         618 maint/gnulib/lib/vasnprintf.c         if (remainder > 0)
remainder         620 maint/gnulib/lib/vasnprintf.c             r_ptr[0] = remainder;
remainder         949 maint/gnulib/lib/vasnprintf.c           mp_limb_t remainder = 0;
remainder         955 maint/gnulib/lib/vasnprintf.c                 ((mp_twolimb_t) remainder << GMP_LIMB_BITS) | *--ptr;
remainder         957 maint/gnulib/lib/vasnprintf.c               remainder = num % 1000000000;
remainder         962 maint/gnulib/lib/vasnprintf.c               *d_ptr++ = '0' + (remainder % 10);
remainder         963 maint/gnulib/lib/vasnprintf.c               remainder = remainder / 10;
remainder         307 maint/gnulib/tests/test-math-c++.cc SIGNATURE_CHECK (GNULIB_NAMESPACE::remainder, double, (double, double));
remainder          36 maint/gnulib/tests/test-remainder-ieee.c #define REMAINDER remainder
remainder          24 maint/gnulib/tests/test-remainder.c SIGNATURE_CHECK (remainder, double, (double, double));
remainder          34 maint/gnulib/tests/test-remainder.c #define REMAINDER remainder
remainder          44 maint/gnulib/tests/test-remainder.c   z = remainder (x, y);
remainder         113 tools/crm_resource.c     gchar **remainder;            // Positional arguments as given
remainder        1476 tools/crm_resource.c         { G_OPTION_REMAINING, 0, G_OPTION_FLAG_NONE, G_OPTION_ARG_STRING_ARRAY, &options.remainder,
remainder        1592 tools/crm_resource.c     if ((options.remainder != NULL) && (options.override_params != NULL)) {
remainder        1594 tools/crm_resource.c         for (gchar **s = options.remainder; *s; s++) {
remainder        1613 tools/crm_resource.c     } else if (options.remainder != NULL) {
remainder        1619 tools/crm_resource.c         for (gchar **s = options.remainder; *s; s++) {
remainder        1628 tools/crm_resource.c         for (gchar **s = options.remainder; *s; s++) {
remainder        2146 tools/crm_resource.c     g_strfreev(options.remainder);