Searched defs:pz (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/v8/test/mjsunit/
H A Dnegate-zero.js35 var pz = 0; variable
41 assertFalse(IsNegativeZero(pz), "0");
42 assertTrue(IsNegativeZero(-pz), "-(0)");
/external/v8/test/mjsunit/
H A Dnegate-zero.js35 var pz = 0; variable
41 assertFalse(IsNegativeZero(pz), "0");
42 assertTrue(IsNegativeZero(-pz), "-(0)");
/external/srec/audio/AudioIn/UNIX/src/
H A Dfilter.c233 typeSample *pz; // pointer to delay line local
247 pz = pFIR->z + pFIR->state; // point to next empty slot in delay line
250 *pz-- = *pInput++;
251 if (pz < pz_beg)
252 pz = pz_end; // wrap around (circular buffer)
261 pz = pFIR->z + pFIR->state;
265 accum += *ph++ * *pz++;
269 pz = pFIR->z;
273 accum += *ph++ * *pz++;
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_aatriangle.c53 const GLfloat pz = z1 - z0; local
60 const GLfloat a = py * qz - pz * qy;
61 const GLfloat b = pz * qx - px * qz;
H A Ds_aaline.c96 const GLfloat pz = z1 - z0;
100 const GLfloat a = py * qz - pz * qy;
101 const GLfloat b = pz * qx - px * qz;
112 const GLfloat pz = z0 - z1; local
113 const GLfloat a = pz * px;
114 const GLfloat b = pz * py;
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1_porter.c261 ** The input word *pz and zFrom are both in reverse order. zTo
269 char **pz, /* The word being stemmed (Reversed) */
274 char *z = *pz;
281 *pz = z;
268 stem( char **pz, const char *zFrom, const char *zTo, int (*xCond)(const char*) ) argument
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_porter.c260 ** The input word *pz and zFrom are both in reverse order. zTo
268 char **pz, /* The word being stemmed (Reversed) */
273 char *z = *pz;
280 *pz = z;
267 stem( char **pz, const char *zFrom, const char *zTo, int (*xCond)(const char*) ) argument
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_porter.c263 ** The input word *pz and zFrom are both in reverse order. zTo
271 char **pz, /* The word being stemmed (Reversed) */
276 char *z = *pz;
283 *pz = z;
270 stem( char **pz, const char *zFrom, const char *zTo, int (*xCond)(const char*) ) argument
H A Dfts3.c679 char **pz, /* IN/OUT: Pointer to string buffer */
688 if( z && *pz ){
689 char *z2 = sqlite3_mprintf("%s%s", *pz, z);
694 sqlite3_free(*pz);
695 *pz = z;
677 fts3Appendf( int *pRc, char **pz, const char *zFormat, ... ) argument
/external/mesa3d/src/mesa/swrast/
H A Ds_aatriangle.c53 const GLfloat pz = z1 - z0; local
60 const GLfloat a = py * qz - pz * qy;
61 const GLfloat b = pz * qx - px * qz;
H A Ds_aaline.c96 const GLfloat pz = z1 - z0;
100 const GLfloat a = py * qz - pz * qy;
101 const GLfloat b = pz * qx - px * qz;
112 const GLfloat pz = z0 - z1; local
113 const GLfloat a = pz * px;
114 const GLfloat b = pz * py;
/external/chromium_org/third_party/sqlite/src/src/
H A Dmalloc.c736 ** Store the string in memory obtained from sqliteMalloc() and make *pz
739 void sqlite3SetString(char **pz, sqlite3 *db, const char *zFormat, ...){ argument
746 sqlite3DbFree(db, *pz);
747 *pz = z;
H A Dvdbeaux.c783 char **pz = &p->aOp[p->nOp-1].zComment; local
785 sqlite3DbFree(p->db, *pz);
786 *pz = sqlite3VMPrintf(p->db, zFormat, ap);
797 char **pz = &p->aOp[p->nOp-1].zComment; local
799 sqlite3DbFree(p->db, *pz);
800 *pz = sqlite3VMPrintf(p->db, zFormat, ap);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c18456 ** Store the string in memory obtained from sqliteMalloc() and make *pz
18459 SQLITE_PRIVATE void sqlite3SetString(char **pz, sqlite3 *db, const char *zFormat, ...){ argument
18466 sqlite3DbFree(db, *pz);
18467 *pz = z;
58087 char **pz = &p->aOp[p->nOp-1].zComment; local
58101 char **pz = &p->aOp[p->nOp-1].zComment; local
113917 fts3Appendf( int *pRc, char **pz, const char *zFormat, ... ) argument
118999 stem( char **pz, const char *zFrom, const char *zTo, int (*xCond)(const char*) ) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c19323 ** Store the string in memory obtained from sqliteMalloc() and make *pz
19326 SQLITE_PRIVATE void sqlite3SetString(char **pz, sqlite3 *db, const char *zFormat, ...){ argument
19333 sqlite3DbFree(db, *pz);
19334 *pz = z;
117343 fts3Appendf( int *pRc, char **pz, const char *zFormat, ... ) argument
123953 stem( char **pz, const char *zFrom, const char *zTo, int (*xCond)(const char*) ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c19323 ** Store the string in memory obtained from sqliteMalloc() and make *pz
19326 SQLITE_PRIVATE void sqlite3SetString(char **pz, sqlite3 *db, const char *zFormat, ...){ argument
19333 sqlite3DbFree(db, *pz);
19334 *pz = z;
117379 fts3Appendf( int *pRc, char **pz, const char *zFormat, ... ) argument
123999 stem( char **pz, const char *zFrom, const char *zTo, int (*xCond)(const char*) ) argument
[all...]

Completed in 3016 milliseconds