ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/rxvtutil.h
(Generate patch)

Comparing rxvt-unicode/src/rxvtutil.h (file contents):
Revision 1.54 by sf-exg, Fri May 25 07:38:05 2012 UTC vs.
Revision 1.62 by sf-exg, Wed Nov 12 12:12:02 2014 UTC

3 3
4#include <stdlib.h> 4#include <stdlib.h>
5#include <string.h> 5#include <string.h>
6#include "ecb.h" 6#include "ecb.h"
7#include "estl.h" 7#include "estl.h"
8
9#include "emman.h"
8 10
9// increases code size unless -fno-enforce-eh-specs 11// increases code size unless -fno-enforce-eh-specs
10#if __GNUC__ 12#if __GNUC__
11# define NOTHROW 13# define NOTHROW
12# define THROW(x) 14# define THROW(x)
24 26
25template<typename T> static inline T squared_diff (T a, T b) { return (a - b) * (a - b); } 27template<typename T> static inline T squared_diff (T a, T b) { return (a - b) * (a - b); }
26 28
27// linear interpolation 29// linear interpolation
28template<typename T, typename U, typename P> 30template<typename T, typename U, typename P>
29static inline 31static inline T
30T lerp (T a, U b, P p) 32lerp (T a, U b, P p)
31{ 33{
32 return (long(a) * long(100 - p) + long(b) * long(p) + 50) / 100; 34 return (long(a) * long(100 - p) + long(b) * long(p) + 50) / 100;
33} 35}
34 36
35// return a very temporary (and never deallocated) buffer. keep small. 37// return a very temporary (and never deallocated) buffer. keep small.
84 T &operator [] (int i) { return * (T *) (& ((* (simplevec<void *> *)this)[i])); } 86 T &operator [] (int i) { return * (T *) (& ((* (simplevec<void *> *)this)[i])); }
85 const T &operator [] (int i) const { return * (const T *) (& ((* (const simplevec<void *> *)this)[i])); } 87 const T &operator [] (int i) const { return * (const T *) (& ((* (const simplevec<void *> *)this)[i])); }
86}; 88};
87#endif 89#endif
88 90
89template<typename T> 91typedef estl::scoped_array<char> auto_str;
90struct auto_ptr
91{
92 T *p;
93
94 auto_ptr () : p (0) { }
95 auto_ptr (T *a) : p (a) { }
96
97 auto_ptr (auto_ptr<T> &a)
98 {
99 p = a.p;
100 a.p = 0;
101 }
102
103 template<typename A>
104 auto_ptr (auto_ptr<A> &a)
105 {
106 p = a.p;
107 a.p = 0;
108 }
109
110 ~auto_ptr ()
111 {
112 free (p);
113 }
114
115 void reset (T *a)
116 {
117 free (p);
118 p = a;
119 }
120
121 // void because it makes sense in our context
122 void operator = (auto_ptr &a)
123 {
124 *this = a.p;
125 a.p = 0;
126 }
127
128 template<typename A>
129 void operator = (auto_ptr<A> &a)
130 {
131 *this = a.p;
132 a.p = 0;
133 }
134
135 operator T * () const { return p; }
136
137 T *operator -> () const { return p; }
138 T &operator * () const { return *p; }
139
140 T *get ()
141 {
142 T *r = p;
143 p = 0;
144 return r;
145 }
146};
147
148typedef auto_ptr<char> auto_str;
149 92
150#endif 93#endif
151 94

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines