Home
last modified time | relevance | path

Searched refs:begin (Results 1 – 25 of 89) sorted by relevance

1234

/PHP-5.5/Zend/
H A Dzend_qsort.c61 register char *begin; in zend_qsort_r() local
73 begin = begin_stack[loop]; in zend_qsort_r()
76 while (begin < end) { in zend_qsort_r()
77 offset = (end - begin) >> 1; in zend_qsort_r()
78 _zend_qsort_swap(begin, begin + (offset - (offset % siz)), siz); in zend_qsort_r()
80 seg1 = begin + siz; in zend_qsort_r()
99 _zend_qsort_swap(begin, seg2, siz); in zend_qsort_r()
103 if ((seg2p - begin) <= (end - seg2p)) { in zend_qsort_r()
111 if ((seg2p - siz) > begin) { in zend_qsort_r()
112 begin_stack[loop] = begin; in zend_qsort_r()
[all …]
/PHP-5.5/ext/pgsql/tests/
H A D05large_object.phpt13 pg_exec ($db, "begin");
23 pg_exec ($db, "begin");
32 pg_exec ($db, "begin");
40 pg_exec ($db, "begin");
46 pg_exec ($db, "begin");
52 pg_exec ($db, "begin");
59 pg_query($db, 'begin');
62 pg_query($db, 'begin');
H A D27large_object_oid.phpt18 pg_exec ($db, "begin");
26 pg_exec ($db, "begin");
34 pg_exec ("begin");
H A D28large_object_import_oid.phpt18 pg_exec($db, 'begin');
26 pg_exec($db, 'begin');
34 pg_exec('begin');
H A D80_bug32223.phpt11 begin
34 begin
H A D80_bug32223b.phpt11 begin
34 begin
/PHP-5.5/ext/sybase_ct/tests/
H A Dbug26407.phpt22 begin transaction
32 begin transaction
41 begin transaction
52 begin transaction
68 begin transaction
77 begin transaction
/PHP-5.5/ext/date/lib/
H A Dtimelib.c291 char *begin = *ptr, *end; in timelib_parse_tz_cor() local
298 switch (end - begin) { in timelib_parse_tz_cor()
301 return HOUR(strtol(begin, NULL, 10)); in timelib_parse_tz_cor()
305 if (begin[1] == ':') { in timelib_parse_tz_cor()
306 tmp = HOUR(strtol(begin, NULL, 10)) + strtol(begin + 2, NULL, 10); in timelib_parse_tz_cor()
308 } else if (begin[2] == ':') { in timelib_parse_tz_cor()
309 tmp = HOUR(strtol(begin, NULL, 10)) + strtol(begin + 3, NULL, 10); in timelib_parse_tz_cor()
312 tmp = strtol(begin, NULL, 10); in timelib_parse_tz_cor()
316 tmp = HOUR(strtol(begin, NULL, 10)) + strtol(begin + 3, NULL, 10); in timelib_parse_tz_cor()
H A Dparse_iso_intervals.re133 char *begin, *end, *str;
143 begin = *ptr;
150 memcpy(str, begin, end - begin);
299 current = s->begin;
445 in.begin->y = TIMELIB_UNSET;
446 in.begin->d = TIMELIB_UNSET;
451 in.begin->f = 0;
452 in.begin->z = 0;
453 in.begin->dst = 0;
454 in.begin->is_localtime = 0;
[all …]
H A Dparse_iso_intervals.c95 struct timelib_time *begin; member
135 char *begin, *end, *str; in timelib_get_nr() local
145 begin = *ptr; in timelib_get_nr()
152 memcpy(str, begin, end - begin); in timelib_get_nr()
893 current = s->begin; in scan()
1051 in.begin->y = TIMELIB_UNSET; in timelib_strtointerval()
1057 in.begin->f = 0; in timelib_strtointerval()
1058 in.begin->z = 0; in timelib_strtointerval()
1059 in.begin->dst = 0; in timelib_strtointerval()
1060 in.begin->is_localtime = 0; in timelib_strtointerval()
[all …]
H A Dparse_date.re444 char *begin, *end, *str;
454 begin = *ptr;
464 memcpy(str, begin, end - begin);
497 begin = *ptr;
504 memcpy(str, begin, end - begin);
546 memcpy(word, begin, end - begin);
579 memcpy(word, begin, end - begin);
626 memcpy(word, begin, end - begin);
721 memcpy(word, begin, end - begin);
1839 char *begin;
[all …]
/PHP-5.5/ext/oci8/tests/
H A Dpecl_bug16842.phpt20 $s = oci_parse($c, 'begin raise NO_DATA_FOUND; end;');
28 $s = oci_parse($c, 'begin raise ZERO_DIVIDE; end;');
54 string(31) "begin raise NO_DATA_FOUND; end;"
71 string(29) "begin raise ZERO_DIVIDE; end;"
H A Dbug46994.phpt17 begin
22 begin
37 $s = oci_parse($c, "begin bug46994_proc1(:myclob); end;");
44 $s = oci_parse($c, "begin bug46994_proc2(:myclob); end;");
51 $s = oci_parse($c, "begin bug46994_proc1(:myclob); end;");
H A Dbug38161.phpt10 $query = "begin if false then :bv := 1; end if; end;";
18 $query = "begin if false then :bv := 1; end if; end;";
H A Dbug47281_tt.phpt19 begin
31 $s = oci_parse($c, 'begin bug47281_sp; end;');
H A Dbug44008.phpt17 as begin p := 'A';
25 $s = oci_parse($c, 'begin bug44008_proc(:data); end;');
H A Ddrcp_functions.inc62 $set_stmt = "begin drcp_test_package.p1($num); end;";
80 begin
84 begin
H A Dbug47281.phpt26 begin
38 $s = oci_parse($c, 'begin bug47281_sp; end;');
H A Dbug37581.phpt20 begin
33 $stmt = oci_parse($c,'begin ARRAYBINDPKG1.array_bind(:in_arr, :out_str); end;');
/PHP-5.5/tests/classes/
H A Dprivate_members.phpt14 echo __METHOD__ . "(begin)\n";
33 echo __METHOD__ . "(begin)\n";
57 derived::__construct(begin)
58 base::__construct(begin)
/PHP-5.5/Zend/tests/
H A Dbug29104.phpt9 echo "function g - begin\n";
25 function g - begin
/PHP-5.5/ext/date/tests/
H A Dbug44562.phpt16 $begin = new DateTime( "2008-07-20T22:44:53+0200" );
19 $dp = new DatePeriod( $begin, $interval, 10 );
/PHP-5.5/ext/standard/tests/array/
H A Darray_intersect_1.phpt34 echo "begin ------------ array_uintersect() ---------------------------\n";
42 echo "begin ------------ array_uintersect_assoc() ---------------------\n";
50 echo "begin ------------ array_uintersect_uassoc() with ordinary func -\n";
58 echo "begin ------------ array_uintersect_uassoc() with method --------\n";
66 begin ------------ array_uintersect() ---------------------------
146 begin ------------ array_uintersect_assoc() ---------------------
219 begin ------------ array_uintersect_uassoc() with ordinary func -
292 begin ------------ array_uintersect_uassoc() with method --------
/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Deaw_table.h2 int begin; member
/PHP-5.5/ext/pdo_oci/tests/
H A Dpdo_oci_fread_1.phpt21 "begin execute immediate 'drop table pdo_oci_fread_tab'; exception when others then null; end;",
25 begin

Completed in 37 milliseconds

1234