info.hh (6169:8ba6a73c8a45) info.hh (6172:278d0e37eba2)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 43 unchanged lines hidden (view full) ---

52/** Print the cumulative percentage of total upto this entry. */
53const FlagsType cdf = 0x0040;
54/** Print the distribution. */
55const FlagsType dist = 0x0080;
56/** Don't print if this is zero. */
57const FlagsType nozero = 0x0100;
58/** Don't print if this is NAN */
59const FlagsType nonan = 0x0200;
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 43 unchanged lines hidden (view full) ---

52/** Print the cumulative percentage of total upto this entry. */
53const FlagsType cdf = 0x0040;
54/** Print the distribution. */
55const FlagsType dist = 0x0080;
56/** Don't print if this is zero. */
57const FlagsType nozero = 0x0100;
58/** Don't print if this is NAN */
59const FlagsType nonan = 0x0200;
60/** Used for SS compatability. */
61const FlagsType __substat = 0x8000;
62
63/** Mask of flags that can't be set directly */
60
61/** Mask of flags that can't be set directly */
64const FlagsType __reserved = init | print | __substat;
62const FlagsType __reserved = init | print;
65
66struct StorageParams
67{
68 virtual ~StorageParams();
69};
70
71struct Visit;
72

--- 180 unchanged lines hidden ---
63
64struct StorageParams
65{
66 virtual ~StorageParams();
67};
68
69struct Visit;
70

--- 180 unchanged lines hidden ---