ns                 40 lib/dtotimespec.c       long ns = frac;
ns                 41 lib/dtotimespec.c       ns += ns < frac;
ns                 42 lib/dtotimespec.c       s += ns / TIMESPEC_HZ;
ns                 43 lib/dtotimespec.c       ns %= TIMESPEC_HZ;
ns                 45 lib/dtotimespec.c       if (ns < 0)
ns                 48 lib/dtotimespec.c           ns += TIMESPEC_HZ;
ns                 51 lib/dtotimespec.c       return make_timespec (s, ns);
ns               2198 lib/mini-gmp.c   mp_size_t ns, ds, nn, dn, qs;
ns               2199 lib/mini-gmp.c   ns = n->_mp_size;
ns               2205 lib/mini-gmp.c   if (ns == 0)
ns               2214 lib/mini-gmp.c   nn = GMP_ABS (ns);
ns               2217 lib/mini-gmp.c   qs = ds ^ ns;
ns               2275 lib/mini-gmp.c       tr->_mp_size = ns < 0 ? - rn : rn;
ns                390 lib/nstrftime.c # define extra_args , tz, ns
ns                391 lib/nstrftime.c # define extra_args_spec , timezone_t tz, int ns
ns               1119 lib/nstrftime.c             int n = ns, ns_digits = 9;
ns                 34 lib/timespec-add.c   int ns = a.tv_nsec + b.tv_nsec;
ns                 35 lib/timespec-add.c   int nsd = ns - TIMESPEC_HZ;
ns                 36 lib/timespec-add.c   int rns = ns;
ns                 35 lib/timespec-sub.c   int ns = a.tv_nsec - b.tv_nsec;
ns                 36 lib/timespec-sub.c   int rns = ns;
ns                 38 lib/timespec-sub.c   if (ns < 0)
ns                 40 lib/timespec-sub.c       rns = ns + TIMESPEC_HZ;
ns                 56 lib/timespec.h make_timespec (time_t s, long int ns)
ns                 58 lib/timespec.h   return (struct timespec) { .tv_sec = s, .tv_nsec = ns };
ns               3909 src/fileio.c     int ns = (errnum == ENOENT || errnum == ENOTDIR
ns               3912 src/fileio.c     return make_timespec (0, ns);
ns               5926 src/fileio.c     int ns = buf->modtime.tv_nsec;
ns               5927 src/fileio.c     if (ns < 0)
ns               5928 src/fileio.c       return make_fixnum (UNKNOWN_MODTIME_NSECS - ns);
ns                653 src/frame.h        struct ns_output *ns;		/* From nsterm.h.  */
ns               1014 src/nsterm.h   #define FRAME_DISPLAY_INFO(f) ((f)->output_data.ns->display_info)
ns               1015 src/nsterm.h   #define FRAME_OUTPUT_DATA(f) ((f)->output_data.ns)
ns               1016 src/nsterm.h   #define FRAME_NS_WINDOW(f) ((f)->output_data.ns->window_desc)
ns               1019 src/nsterm.h   #define FRAME_FOREGROUND_COLOR(f) ((f)->output_data.ns->foreground_color)
ns               1020 src/nsterm.h   #define FRAME_BACKGROUND_COLOR(f) ((f)->output_data.ns->background_color)
ns               1027 src/nsterm.h   #define FRAME_NS_VIEW(f) ((f)->output_data.ns->view)
ns               1028 src/nsterm.h   #define FRAME_CURSOR_COLOR(f) ((f)->output_data.ns->cursor_color)
ns               1029 src/nsterm.h   #define FRAME_POINTER_TYPE(f) ((f)->output_data.ns->current_pointer)
ns               1031 src/nsterm.h   #define FRAME_FONT(f) ((f)->output_data.ns->font)
ns               1090 src/nsterm.h   #define FRAME_FONTSET(f) ((f)->output_data.ns->fontset)
ns               1092 src/nsterm.h   #define FRAME_BASELINE_OFFSET(f) ((f)->output_data.ns->baseline_offset)
ns                527 src/termhooks.h     struct ns_display_info *ns;			/* nsterm.h */
ns                933 src/termhooks.h   (t->type == output_ns ? t->display_info.ns->name_list_element : Qnil)
ns                589 src/timefns.c        int ns = t.tv_nsec;
ns                591 src/timefns.c  		    make_fixnum (ns / 1000), make_fixnum (ns % 1000 * 1000));
ns                938 src/timefns.c    int ns;
ns                951 src/timefns.c  	  ns = XFIXNUM (t.ticks) % TIMESPEC_HZ;
ns                952 src/timefns.c  	  if (ns < 0)
ns                953 src/timefns.c  	    s--, ns += TIMESPEC_HZ;
ns                958 src/timefns.c  	      result.tv_nsec = ns;
ns                963 src/timefns.c  	ns = mpz_fdiv_q_ui (*q, *xbignum_val (t.ticks), TIMESPEC_HZ);
ns                967 src/timefns.c        ns = 0;
ns                975 src/timefns.c  	      result.tv_nsec = ns;
ns                986 src/timefns.c        ns = mpz_fdiv_q_ui (*q, *q, TIMESPEC_HZ);
ns                995 src/timefns.c        result.tv_nsec = ns;
ns               1305 src/timefns.c  		 size_t format_len, const struct tm *tp, timezone_t tz, int ns)
ns               1318 src/timefns.c        size_t result = nstrftime (s, maxsize, format, tp, tz, ns);
ns               1346 src/timefns.c    int ns = t.tv_nsec;
ns               1366 src/timefns.c        len = emacs_nmemftime (buf, size, format, formatlen, tmp, tz, ns);
ns               1372 src/timefns.c        len = emacs_nmemftime (NULL, SIZE_MAX, format, formatlen, tmp, tz, ns);
ns                635 src/w32inevt.c   struct notifications_set *ns = NULL;
ns                648 src/w32inevt.c       ns = NULL;
ns                656 src/w32inevt.c 	  ns = notifications_set_head->next;
ns                657 src/w32inevt.c 	  ns->prev->next = ns->next;
ns                658 src/w32inevt.c 	  ns->next->prev = ns->prev;
ns                664 src/w32inevt.c       if (ns)
ns                666 src/w32inevt.c 	  BYTE *p = ns->notifications;
ns                671 src/w32inevt.c 	  DWORD info_size = ns->size;
ns                673 src/w32inevt.c 	  Lisp_Object obj = w32_get_watch_object (ns->desc);
ns                702 src/w32inevt.c 		  inev.arg = list3 (make_pointer_integer (ns->desc),
ns                714 src/w32inevt.c 	  free (ns->notifications);
ns                715 src/w32inevt.c 	  free (ns);
ns                128 src/w32notify.c send_notifications (struct notifications_set *ns)
ns                136 src/w32notify.c   ns->next = notifications_set_head;
ns                137 src/w32notify.c   ns->prev = notifications_set_head->prev;
ns                138 src/w32notify.c   ns->prev->next = ns;
ns                139 src/w32notify.c   notifications_set_head->prev = ns;
ns                192 src/w32notify.c   struct notifications_set *ns = NULL;
ns                233 src/w32notify.c   ns = malloc (sizeof(struct notifications_set));
ns                234 src/w32notify.c   if (ns)
ns                236 src/w32notify.c       memset (ns, 0, sizeof(struct notifications_set));
ns                237 src/w32notify.c       ns->notifications = malloc (bytes_ret);
ns                238 src/w32notify.c       if (ns->notifications)
ns                240 src/w32notify.c 	  memcpy (ns->notifications, dirwatch->buf, bytes_ret);
ns                241 src/w32notify.c 	  ns->size = bytes_ret;
ns                242 src/w32notify.c 	  ns->desc = dirwatch;
ns                246 src/w32notify.c 	  free (ns);
ns                247 src/w32notify.c 	  ns = NULL;
ns                250 src/w32notify.c   if (ns == NULL)
ns                268 src/w32notify.c   if (ns)
ns                269 src/w32notify.c     send_notifications(ns);
ns               3557 src/w32term.c    struct notifications_set *ns = NULL;
ns               3570 src/w32term.c        ns = NULL;
ns               3578 src/w32term.c  	  ns = notifications_set_head->next;
ns               3579 src/w32term.c  	  ns->prev->next = ns->next;
ns               3580 src/w32term.c  	  ns->next->prev = ns->prev;
ns               3586 src/w32term.c        if (ns)
ns               3588 src/w32term.c  	  BYTE *p = ns->notifications;
ns               3592 src/w32term.c  	  DWORD info_size = ns->size;
ns               3594 src/w32term.c  	  Lisp_Object obj = w32_get_watch_object (ns->desc);
ns               3620 src/w32term.c  		  event->arg = list3 (make_pointer_integer (ns->desc),
ns               3632 src/w32term.c  	  xfree (ns->notifications);
ns               3633 src/w32term.c  	  xfree (ns);
ns                101 src/w32xfns.c  	  struct notifications_set *ns = notifications_set_head->next;
ns                102 src/w32xfns.c  	  notifications_set_head->next = ns->next;
ns                103 src/w32xfns.c  	  ns->next->prev = notifications_set_head;
ns                104 src/w32xfns.c  	  if (ns->notifications)
ns                105 src/w32xfns.c  	    free (ns->notifications);
ns                106 src/w32xfns.c  	  free (ns);
ns                228 src/xrdb.c     	  static char const ns[] = "%N%S";
ns                229 src/xrdb.c     	  XrmDatabase db = magic_db (ns, strlen (ns), class, escaped_suffix);