Searched refs:p0 (Results 1 - 25 of 159) sorted by relevance

1234567

/macosx-10.9.5/libarchive-29/libarchive/tar/test/
H A Dtest_option_r.c34 char *p0, *p1; local
57 p0 = slurpfile(&s, "archive.tar");
58 if (!assert(p0 != NULL))
61 free(p0);
64 assertEqualMem(p0 + 0, "f1", 3);
65 assertEqualMem(p0 + 512, "abc", 3);
66 assertEqualMem(p0 + 1024, "\0\0\0\0\0\0\0\0", 8);
67 assertEqualMem(p0 + 1536, "\0\0\0\0\0\0\0\0", 8);
88 free(p0);
93 assertEqualMem(p0, p
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/canvas/
H A DCanvasGradient.h41 static PassRefPtr<CanvasGradient> create(const FloatPoint& p0, const FloatPoint& p1) argument
43 return adoptRef(new CanvasGradient(p0, p1));
45 static PassRefPtr<CanvasGradient> create(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1) argument
47 return adoptRef(new CanvasGradient(p0, r0, p1, r1));
59 CanvasGradient(const FloatPoint& p0, const FloatPoint& p1);
60 CanvasGradient(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1);
H A DCanvasGradient.cpp37 CanvasGradient::CanvasGradient(const FloatPoint& p0, const FloatPoint& p1) argument
38 : m_gradient(Gradient::create(p0, p1))
45 CanvasGradient::CanvasGradient(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1) argument
46 : m_gradient(Gradient::create(p0, r0, p1, r1))
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/krb5/
H A Darcfour.c175 u_char k6_data[16], *p0, *p; local
187 p0 = _gssapi_make_mech_header(message_token->value,
190 p = p0;
205 p0 + 16, 8, /* SGN_CKSUM */
206 p0, 8, /* TOK_ID, SGN_ALG, Filer */
216 p0 + 16, 8, /* SGN_CKSUM */
228 p = p0 + 8; /* SND_SEQ */
355 u_char Klocaldata[16], k6_data[16], *p, *p0; local
383 p0 = _gssapi_make_mech_header(output_message_buffer->value,
386 p = p0;
516 u_char *p, *p0; local
[all...]
/macosx-10.9.5/gnudiff-19/diffutils/src/
H A Dio.c575 char *p0, *p1, *buffer0, *buffer1;
603 p0 = buffer0 = (char *) w0;
608 if (p0 == p1)
610 p0 = p1 += n1;
617 p0[n0] = ~p1[n0];
619 p1[n1] = ~p0[n1];
628 p0 = (char *) w0;
630 while (*p0 == *p1)
631 p0++, p1++;
635 && ((buffer0 + n0 - filevec[0].missing_newline < p0)
569 char *p0, *p1, *buffer0, *buffer1; local
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/open_ssl/misc/
H A Drc2_cbc.c165 register RC2_INT *p0,*p1; local
179 p0=p1= &(key->data[0]);
182 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff;
184 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff;
186 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff;
188 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff;
214 register RC2_INT *p0,*p1; local
228 p0= &(key->data[63]);
233 x3=(t-(x0& ~x2)-(x1&x2)- *(p0--))&0xffff;
235 x2=(t-(x3& ~x1)-(x0&x1)- *(p0
[all...]
H A Drc2_locl.h166 t=(x0+(x1& ~x3)+(x2&x3)+ *(p0++))&0xffff; \
168 t=(x1+(x2& ~x0)+(x3&x0)+ *(p0++))&0xffff; \
170 t=(x2+(x3& ~x1)+(x0&x1)+ *(p0++))&0xffff; \
172 t=(x3+(x0& ~x2)+(x1&x2)+ *(p0++))&0xffff; \
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DFloatRect.cpp166 void FloatRect::fitToPoints(const FloatPoint& p0, const FloatPoint& p1) argument
168 float left = min(p0.x(), p1.x());
169 float top = min(p0.y(), p1.y());
170 float right = max(p0.x(), p1.x());
171 float bottom = max(p0.y(), p1.y());
205 void FloatRect::fitToPoints(const FloatPoint& p0, const FloatPoint& p1, const FloatPoint& p2) argument
207 float left = min3(p0.x(), p1.x(), p2.x());
208 float top = min3(p0.y(), p1.y(), p2.y());
209 float right = max3(p0.x(), p1.x(), p2.x());
210 float bottom = max3(p0
215 fitToPoints(const FloatPoint& p0, const FloatPoint& p1, const FloatPoint& p2, const FloatPoint& p3) argument
[all...]
H A DGradient.h74 static PassRefPtr<Gradient> create(const FloatPoint& p0, const FloatPoint& p1) argument
76 return adoptRef(new Gradient(p0, p1));
78 static PassRefPtr<Gradient> create(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1, float aspectRatio = 1) argument
80 return adoptRef(new Gradient(p0, r0, p1, r1, aspectRatio));
93 const FloatPoint& p0() const { return m_p0; } function in class:WebCore::Gradient
182 Gradient(const FloatPoint& p0, const FloatPoint& p1);
183 Gradient(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1, float aspectRatio);
H A DGradient.cpp39 Gradient::Gradient(const FloatPoint& p0, const FloatPoint& p1) argument
41 , m_p0(p0)
53 Gradient::Gradient(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1, float aspectRatio) argument
55 , m_p0(p0)
186 FloatPoint p0; member in struct:WebCore::__anon5378
203 parameters.p0 = m_p0;
H A DFloatPolygon.cpp42 static inline bool areCollinearPoints(const FloatPoint& p0, const FloatPoint& p1, const FloatPoint& p2) argument
44 return !determinant(p1 - p0, p2 - p0);
47 static inline bool areCoincidentPoints(const FloatPoint& p0, const FloatPoint& p1) argument
49 return p0.x() == p1.x() && p0.y() == p1.y();
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/python/test/
H A Dtest_unittest.py64 self.p0 = t.product(self.v0)
65 self.g0 = self.p0.groupby(self.p0.t, self.p0.f, 'details')
79 self.p0 = self.p0.unique()
203 self.assertEqual(len(self.p0), 9)
204 self.assertEqual(len(self.p0.select(s='a')), 3)
205 self.assertEqual(len(self.p0.select(t='a')), 3)
209 t1 = self.p0
[all...]
/macosx-10.9.5/ppp-727.90.1/Helpers/MiniTerm/
H A DMiniTerm.m250 u_char *p, *p0;
258 p0 = p = (u_char *)[data bytes];
282 [self display:p0 length:p - p0];
300 [self display:p0 length:p - p0];
301 p0 = p + 1;
316 [self display:p0 length:p - p0];
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/
H A Drsa-gmp.c126 unsigned char *p, *p0; local
141 p = p0 = malloc(size - 1);
142 if (p0 == NULL) {
155 free(p0);
167 assert((p - p0) == size - 1);
171 mpz_import(dec, size - 1, 1, 1, 1, 0, p0);
172 free(p0);
261 unsigned char *p, *p0; local
273 p0 = p = malloc(size);
281 assert((p - p0)
[all...]
H A Drsa-ltm.c151 unsigned char *p, *p0; local
171 p = p0 = malloc(size - 1);
172 if (p0 == NULL) {
183 free(p0);
195 assert((p - p0) == size - 1);
197 mp_read_unsigned_bin(&dec, p0, size - 1);
198 free(p0);
295 unsigned char *p, *p0; local
313 p0 = p = malloc(size);
321 assert((p - p0)
[all...]
H A Drsa-tfm.c105 unsigned char *p, *p0; local
121 p = p0 = malloc(size - 1);
122 if (p0 == NULL) {
132 free(p0);
144 assert((p - p0) == size - 1);
147 fp_read_unsigned_bin(&dec, p0, size - 1);
148 free(p0);
240 unsigned char *p, *p0; local
253 p0 = p = malloc(size);
261 assert((p - p0)
[all...]
/macosx-10.9.5/Chess-310.5/Sources/
H A DMBCBoardViewMouse.mm142 GLdouble p0[3];
147 p0+0, p0+1, p0+2);
148 GLdouble yint = (knownY-p1[1])/(p0[1]-p1[1]);
149 pos[0] = p1[0]+(p0[0]-p1[0])*yint;
151 pos[2] = p1[2]+(p0[2]-p1[2])*yint;
181 NSPoint p0 = proj.Project(pos);
193 if (p1.x > p0.x) {
194 r.origin.x = max(p0
[all...]
/macosx-10.9.5/python_modules-35/2.5/xattr/
H A DMakefile10 cd $(DIR) && patch -p0 -i $(SRCROOT)/$(NAME)/KeyError.diff
/macosx-10.9.5/python_modules-35/xattr/
H A DMakefile10 cd $(DIR) && patch -p0 -i $(SRCROOT)/$(NAME)/KeyError.diff
/macosx-10.9.5/cxxfilt-11/cxxfilt/opcodes/
H A Dvax-dis.c201 unsigned char *p0,
205 unsigned char *p = p0;
223 p += print_insn_mode (d, size, p0 + 1, addr + 1, info);
306 return p - p0;
315 unsigned char *p0,
339 unsigned char *p = p0;
346 return p - p0;
349 return print_insn_mode (d, arg_len, p0, addr, info);
199 print_insn_mode(const char *d, int size, unsigned char *p0, bfd_vma addr, disassemble_info *info) argument
314 print_insn_arg(const char *d, unsigned char *p0, bfd_vma addr, disassemble_info *info) argument
/macosx-10.9.5/vim-53/runtime/indent/
H A Dlifelines.vim18 setlocal cinoptions+=p0
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DPathDrawing.py5 p0 = CGPoint(0, 0)
13 CGContextMoveToPoint(context, p0.x, p0.y)
17 CGContextAddCurveToPoint(context, -c2.x, c2.y, -c1.x, c1.y, p0.x, p0.y)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DPathDrawing.py5 p0 = CGPoint(0, 0)
13 CGContextMoveToPoint(context, p0.x, p0.y)
17 CGContextAddCurveToPoint(context, -c2.x, c2.y, -c1.x, c1.y, p0.x, p0.y)
/macosx-10.9.5/ppp-727.90.1/Helpers/pppd/
H A Dccp.c763 u_char *p0 = p; local
792 if (p != p0) {
812 if (p != p0 && go->deflate_correct && go->deflate_draft) {
824 if (p != p0) {
849 if (p == p0 && ccp_test(f->unit, p, CILEN_PREDICTOR_1, 0) <= 0) {
858 if (p == p0 && ccp_test(f->unit, p, CILEN_PREDICTOR_2, 0) <= 0) {
865 go->method = (p > p0)? p0[0]: -1;
867 *lenp = p - p0;
881 u_char *p0 local
1163 u_char *p0, *retp; local
1588 u_char *p0, *optend; local
[all...]
/macosx-10.9.5/Libc-997.90.3/stdio/FreeBSD/
H A Dprintfcommon.h266 exponent(CHAR *p0, int exp, CHAR fmtch) argument
271 p = p0;
298 return (p - p0);

Completed in 217 milliseconds

1234567