Home
last modified time | relevance | path

Searched refs:vector (Results 1 – 17 of 17) sorted by relevance

/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dxmlrpc.h427 #define XMLRPC_VectorAppendString(vector, id, s, len) XMLRPC_AddValueToVector(vector, XMLRPC_Create… argument
428 #define XMLRPC_VectorAppendBase64(vector, id, s, len) XMLRPC_AddValueToVector(vector, XMLRPC_Create… argument
431 #define XMLRPC_VectorAppendDouble(vector, id, f) XMLRPC_AddValueToVector(vector, XMLRPC_CreateValue… argument
432 #define XMLRPC_VectorAppendInt(vector, id, i) XMLRPC_AddValueToVector(vector, XMLRPC_CreateValueInt… argument
433 #define XMLRPC_VectorAppendBoolean(vector, id, i) XMLRPC_AddValueToVector(vector, XMLRPC_CreateValu… argument
437 #define XMLRPC_VectorGetStringWithID(vector, id) XMLRPC_GetValueString(XMLRPC_VectorGetValueWithID( argument
438 #define XMLRPC_VectorGetBase64WithID(vector, id) XMLRPC_GetValueBase64(XMLRPC_VectorGetValueWithID( argument
439 #define XMLRPC_VectorGetDateTimeWithID(vector, id) XMLRPC_GetValueDateTime(XMLRPC_VectorGetValueWit… argument
440 #define XMLRPC_VectorGetDoubleWithID(vector, id) XMLRPC_GetValueDouble(XMLRPC_VectorGetValueWithID( argument
441 #define XMLRPC_VectorGetIntWithID(vector, id) XMLRPC_GetValueInt(XMLRPC_VectorGetValueWithID(vector argument
[all …]
H A Dxmlrpc.c1271 XMLRPC_VALUE XMLRPC_VectorGetValueWithID_Case (XMLRPC_VALUE vector, const char *id, in XMLRPC_VectorGetValueWithID_Case() argument
1273 if(vector && vector->v && vector->v->q) { in XMLRPC_VectorGetValueWithID_Case()
1274 q_iter qi = Q_Iter_Head_F(vector->v->q); in XMLRPC_VectorGetValueWithID_Case()
1299 int XMLRPC_VectorRemoveValue(XMLRPC_VALUE vector, XMLRPC_VALUE value) { in XMLRPC_VectorRemoveValue() argument
1300 if(vector && vector->v && vector->v->q && value) { in XMLRPC_VectorRemoveValue()
1301 q_iter qi = Q_Iter_Head_F(vector->v->q); in XMLRPC_VectorRemoveValue()
1307 Q_Iter_Del(vector->v->q, qi); in XMLRPC_VectorRemoveValue()
H A Dxmlrpc_introspection.c110 static inline void describe_method(XMLRPC_SERVER server, XMLRPC_VALUE vector, const char* method) { in describe_method() argument
114 XMLRPC_AddValueToVector(vector, sm->desc); in describe_method()
/PHP-5.5/main/
H A Dphp_scandir.c63 struct dirent **vector = NULL; in php_scandir() local
93 newv = (struct dirent **) realloc (vector, vector_size * sizeof (struct dirent *)); in php_scandir()
97 vector = newv; in php_scandir()
107 vector[nfiles++] = (struct dirent *) memcpy(newdp, dp, dsize); in php_scandir()
112 *namelist = vector; in php_scandir()
122 free(vector[nfiles]); in php_scandir()
124 free(vector); in php_scandir()
/PHP-5.5/ext/hash/tests/
H A Dhaval.phpt2 haval algorithm (multi-vector, multi-pass, multi-width)
/PHP-5.5/main/streams/
H A Dstreams.c2285 char **vector = NULL; local
2306 efree(vector);
2311 vector = (char **) safe_erealloc(vector, vector_size, sizeof(char *), 0);
2314 vector[nfiles] = estrdup(sdp.d_name);
2320 efree(vector);
2326 *namelist = vector;
/PHP-5.5/ext/intl/msgformat/
H A Dmsgformat_helpers.cpp370 std::vector<Formattable> fargs; in umsg_format_helper()
371 std::vector<UnicodeString> farg_names; in umsg_format_helper()
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestoutput10778 Matched, but offsets vector is too small to show all matches
806 Matched, but offsets vector is too small to show all matches
834 Matched, but offsets vector is too small to show all matches
862 Matched, but offsets vector is too small to show all matches
890 Matched, but offsets vector is too small to show all matches
H A Dtestoutput855 Matched, but offsets vector is too small to show all matches
3111 Matched, but offsets vector is too small to show all matches
3142 Matched, but offsets vector is too small to show all matches
7556 Matched, but offsets vector is too small to show all matches
7725 Matched, but offsets vector is too small to show all matches
H A Dtestoutput9411 Matched, but offsets vector is too small to show all matches
437 Matched, but offsets vector is too small to show all matches
H A Dtestinput2723 /This one's here because of the large output vector needed/I
H A Dtestoutput22182 /This one's here because of the large output vector needed/I
/PHP-5.5/ext/pcre/pcrelib/
H A DHACKING73 into the vector, which it knows is big enough.
147 The compiled form of a pattern is a vector of unsigned units (bytes in 8-bit
H A DChangeLog834 vector is large enough.
936 44. A call to pcre_dfa_exec() with an output vector size less than 2 caused
1444 substring 1 is temporarily captured. If the output vector supplied to
1454 slots in the output vector, pcre_exec() uses temporary memory during
1570 as the output vector has at least 2 elements. The offset of the start of
1571 the failing character and a reason code are placed in the vector.
2086 eint vector in pcreposix.c.
2494 leak if the size of the offset vector was greater than 30. When the vector
2496 vector, but for larger vectors malloc() is used. It was failing to free
5375 captured string vector to pcre_exec(), but (since release 2.00) PCRE has
[all …]
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt2906 pointers in the output vector (described with pcre_exec() below). To do
3096 ovector, /* vector of integers for substring information */
3517 Captured substrings are returned to the caller via a vector of integers
3522 The first two-thirds of the vector is used to pass back captured sub-
3524 of the vector is used as workspace by pcre_exec() while matching cap-
3897 be the number of elements in the vector divided by three.
4123 ovector, /* vector of integers for substring information */
4125 wspace, /* working space vector */
4246 workspace vector.
4253 should be extremely rare, as a vector of size 1000 is used.
[all …]
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic17418 >0x00003B byte 0x02 (real vector)
17419 >0x00003B byte 0x03 (complex vector)
17451 >0x00003B byte 0x02 (real vector)
17914 >2 byte 101 (unsigned char vector)
17915 >2 byte 102 (short integer vector)
17916 >2 byte 103 (float 32 vector)
17917 >2 byte 104 (float 64 vector)
17918 >2 byte 105 (signed char vector)
17919 >2 byte 106 (bit plane vector)
17920 >2 byte 121 (feature vector)
[all …]
/PHP-5.5/
H A DNEWS2349 . New SSL stream context option to prevent CRIME attack vector. (Daniel Lowrey,

Completed in 261 milliseconds