Lines Matching refs:blk
1046 XawTextBlock blk;
1067 pos1 = XawTextSourceRead(source, pos1, &blk, (int)(pos2 - pos1));
1068 for (k = 0; k < blk.length; k++) {
1075 buf[j] = (unsigned char)blk.ptr[k];
1372 XawTextBlock blk;
1413 pos = XawTextSourceRead(source, pos, &blk, (int)length);
1414 if (blk.length == 0 && pos == idx) /* eof reached */
1417 idx = blk.firstPos;
1419 if (i >= blk.length)
1421 c = (unsigned char)blk.ptr[i];
1442 XawTextBlock blk;
1445 pos = XawTextSourceRead(source, fromPos, &blk, (int)(toPos - fromPos));
1450 if (i >= blk.length) {
1452 pos = XawTextSourceRead(source, pos, &blk, (int)(toPos - pos));
1453 if (blk.length == 0)
1456 c = (unsigned char)blk.ptr[i];
1484 XawTextBlock blk;
1521 pos = XawTextSourceRead(source, pos, &blk, (int)length);
1522 if (blk.length == 0 && pos == idx) /* eof reached */
1525 idx = blk.firstPos;
1526 for (i = 0; rWidth <= width && i < blk.length; i++, idx++) {
1527 c = (unsigned char)blk.ptr[i];
1570 XawTextBlock blk;
1572 pos = XawTextSourceRead(source, fromPos, &blk, BUFSIZ);
1578 if (i >= blk.length) {
1580 pos = XawTextSourceRead(source, pos, &blk, BUFSIZ);
1581 if (blk.length == 0)
1584 c = (unsigned char)blk.ptr[i];