Searched refs:irow (Results 1 – 9 of 9) sorted by relevance
/external/qemu/ |
D | vnchextile.h | 17 pixel_t *irow = (pixel_t *)row; in CONCAT() local 35 bg = irow[i]; in CONCAT() 39 if (irow[i] != bg) { in CONCAT() 40 fg = irow[i]; in CONCAT() 45 if (irow[i] != bg && irow[i] != fg) { in CONCAT() 48 if (irow[i] == bg) in CONCAT() 50 else if (irow[i] == fg) in CONCAT() 60 irow += ds_get_linesize(vs->ds) / sizeof(pixel_t); in CONCAT() 88 irow = (pixel_t *)row; in CONCAT() 93 if (irow[i] == fg) { in CONCAT() [all …]
|
/external/webkit/Source/WebCore/platform/image-decoders/gif/ |
D | GIFImageReader.cpp | 114 drow_start = drow_end = gs->irow; in output_row() 170 gs->irow++; in output_row() 176 gs->irow += 8; in output_row() 177 if (gs->irow >= gs->height) { in output_row() 179 gs->irow = 4; in output_row() 184 gs->irow += 8; in output_row() 185 if (gs->irow >= gs->height) { in output_row() 187 gs->irow = 2; in output_row() 192 gs->irow += 4; in output_row() 193 if (gs->irow >= gs->height) { in output_row() [all …]
|
D | GIFImageReader.h | 95 unsigned int irow; /* Current output row, starting at zero */ member 128 rows_remaining = irow = 0; in GIFFrameReader()
|
/external/openssl/apps/ |
D | srp.c | 179 char ** irow; in update_index() local 182 if ((irow=(char **)OPENSSL_malloc(sizeof(char *)*(DB_NUMBER+1))) == NULL) in update_index() 190 irow[i]=row[i]; in update_index() 193 irow[DB_NUMBER]=NULL; in update_index() 195 if (!TXT_DB_insert(db->db,irow)) in update_index() 199 OPENSSL_free(irow); in update_index() 651 char **irow = NULL; in MAIN() local 654 irow = (char **)sk_OPENSSL_PSTRING_value(db->db->data, userindex); in MAIN() 656 …_user(user, row[DB_srpverifier], row[DB_srpsalt], irow ? irow[DB_srpsalt] : row[DB_srpgN], irow ? … in MAIN()
|
D | ca.c | 1721 OPENSSL_STRING *irow=NULL; in do_body() local 2199 if ((irow=(char **)OPENSSL_malloc(sizeof(char *)*(DB_NUMBER+1))) == NULL) in do_body() 2207 irow[i]=row[i]; in do_body() 2210 irow[DB_NUMBER]=NULL; in do_body() 2212 if (!TXT_DB_insert(db->db,irow)) in do_body() 2413 char *row[DB_NUMBER],**rrow,**irow; in do_revoke() local 2467 if ((irow=(char **)OPENSSL_malloc(sizeof(char *)*(DB_NUMBER+1))) == NULL) in do_revoke() 2475 irow[i]=row[i]; in do_revoke() 2478 irow[DB_NUMBER]=NULL; in do_revoke() 2480 if (!TXT_DB_insert(db->db,irow)) in do_revoke()
|
/external/webp/src/enc/ |
D | picture.c | 228 int32_t* frow, int32_t* irow, int dst_width) { in ImportRow() argument 262 irow[x_out] += frow[x_out]; in ImportRow() 266 static void ExportRow(int32_t* frow, int32_t* irow, uint8_t* dst, int dst_width, in ExportRow() argument 271 const int v = MULT(irow[x_out] - frac, fxy_scale); in ExportRow() 273 irow[x_out] = frac; // new fractional start in ExportRow() 289 int32_t* irow = work; // integral contribution in RescalePlane() local 295 ImportRow(src, src_width, frow, irow, dst_width); in RescalePlane() 301 ExportRow(frow, irow, dst, dst_width, yscale, fxy_scale); in RescalePlane()
|
/external/llvm/test/Transforms/IndVarSimplify/ |
D | lftr-reuse.ll | 86 i32 %irow, i32 %ilead) nounwind { 97 %cmp = icmp slt i32 1, %irow 112 %cmp196 = icmp slt i32 %i.inc, %irow 121 i32 %irow, i32 %ilead) nounwind { 146 %cmp196 = icmp slt i32 %i.inc, %irow
|
/external/webp/src/dec/ |
D | webpi.h | 40 int32_t* irow, *frow; // work buffer member
|
D | io.c | 447 wrk->irow = work; in InitRescaler() 485 wrk->irow[x_out] += wrk->frow[x_out]; in ImportRow() 495 const int v = MULT(wrk->irow[x_out] - frac, wrk->fxy_scale); in ExportRow() 497 wrk->irow[x_out] = frac; // new fractional start in ExportRow()
|