HomeSort by: relevance | last modified time | path
    Searched defs:CHANGED (Results 1 - 7 of 7) sorted by relevancy

  /src/usr.bin/tip/
tip.h 119 #define CHANGED 01 /* low bit is used to show modification */
  /src/sys/arch/powerpc/booke/
e500_tlb.c 301 #define CHANGED(n,o,f) ((n)->f != (o).f)
302 bool mas1_changed_p = CHANGED(new_hwtlb, old_hwtlb, hwtlb_mas1);
303 bool mas2_changed_p = CHANGED(new_hwtlb, old_hwtlb, hwtlb_mas2);
304 bool mas3_changed_p = CHANGED(new_hwtlb, old_hwtlb, hwtlb_mas3);
305 #undef CHANGED
  /src/external/gpl2/diffutils/dist/src/
diff.h 43 CHANGED
75 /* Like -f, but output a count of changed lines in each "command" (-n). */
166 /* Line group formats for unchanged, old, new, and changed groups. */
167 XTERN char const *group_format[CHANGED + 1];
222 lin inserted; /* # lines of file 1 changed here. */
223 lin deleted; /* # lines of file 0 changed here. */
287 bool *changed;
284 bool *changed; member in struct:file_data
  /src/external/gpl2/xcvs/dist/diff/
diff.h 49 /* Like -f, but output a count of changed lines in each "command" (-n). */
152 CHANGED
155 /* Line group formats for old, new, unchanged, and changed groups. */
156 EXTERN char *group_format[CHANGED + 1];
204 int inserted; /* # lines of file 1 changed here. */
205 int deleted; /* # lines of file 0 changed here. */
  /src/sys/rump/librump/rumpvfs/
rumpfs.c 910 #define CHANGED(a, t) (vap->a != (t)VNOVAL)
911 #define SETIFVAL(a,t) if (CHANGED(a, t)) rn->rn_va.a = vap->a
912 if (CHANGED(va_atime.tv_sec, time_t) ||
913 CHANGED(va_ctime.tv_sec, time_t) ||
914 CHANGED(va_mtime.tv_sec, time_t) ||
915 CHANGED(va_birthtime.tv_sec, time_t) ||
916 CHANGED(va_atime.tv_nsec, long) ||
917 CHANGED(va_ctime.tv_nsec, long) ||
918 CHANGED(va_mtime.tv_nsec, long) ||
919 CHANGED(va_birthtime.tv_nsec, long))
    [all...]
  /src/sys/kern/
vfs_syscalls.c 3893 #define CHANGED(x) ((int)(x) != -1)
3918 if (CHANGED(uid))
3920 if (CHANGED(gid))
3928 vattr.va_uid = CHANGED(uid) ? uid : (uid_t)VNOVAL;
3929 vattr.va_gid = CHANGED(gid) ? gid : (gid_t)VNOVAL;
3932 #undef CHANGED
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
Attributor.h 33 // changed since the last iteration. That means that the Attribute will not
41 // abstract attribute that changed. In every invocation, the update method has
47 // state changed, the `updateImpl` has to revisit the situation and potentially
140 CHANGED,
232 // NOTE: In the future this definition can be changed to support recursive
1077 /// \Returns CHANGED if the IR was changed, otherwise UNCHANGED.
1346 /// uses should be changed too.
1349 bool Changed = false;
1352 Changed |= changeUseAfterManifest(U, NV)
    [all...]

Completed in 19 milliseconds