Lines Matching refs:j

1784                         for ($j = 0; $j < $count; $j++)
1785 $value[$j] = $this->_getByte($rawValue, $j);
1796 for ($j = 0; $j < $count; $j++)
1797 $value[$j] = $this->_getShort($rawValue, $j * 2, $isBigEndian);
1805 for ($j = 0; $j < $count; $j++)
1806 $value[$j] = $this->_getLong($rawValue, $j * 4, $isBigEndian);
1822 for ($j = 0; $j < $count; $j++) {
1823 $a = $this->_getLong($rawValue, $j * 8, $isBigEndian);
1824 $b = $this->_getLong($rawValue, ($j * 8) + 4, $isBigEndian);
1826 $value[$j]['val'] = 0;
1827 $value[$j]['num'] = $a;
1828 $value[$j]['den'] = $b;
1830 $value[$j]['val'] = $a / $b;
1839 for ($j = 0; $j < $count; $j++)
1840 $value[$j] = $this->_getByte($rawValue, $j);
1851 for ($j = 0; $j < $count; $j++)
1852 $value[$j] = $this->_getShort($rawValue, $j * 2, $isBigEndian);
1860 for ($j = 0; $j < $count; $j++)
1861 $value[$j] = $this->_getLong($rawValue, $j * 4, $isBigEndian);
1876 for ($j = 0; $j < $count; $j++) {
1877 $a = $this->_getLong($rawValue, $j * 8, $isBigEndian);
1878 $b = $this->_getLong($rawValue, ($j * 8) + 4, $isBigEndian);
1880 $value[$j]['val'] = 0;
1881 $value[$j]['num'] = $a;
1882 $value[$j]['den'] = $b;
1884 $value[$j]['val'] = $a / $b;
2157 $j = 0;
2158 while (($j < $count) && ($j < $origCount)) {
2160 $this->_putByte($value, $j, $origValue[$j]);
2161 $j++;
2164 while ($j < $count) {
2165 $this->_putByte($value, $j, 0);
2166 $j++;
2187 $j = 0;
2188 while (($j < $count) && ($j < $origCount)) {
2189 $this->_putShort($value, $j * 2, $origValue[$j], $isBigEndian);
2190 $j++;
2193 while ($j < $count) {
2194 $this->_putShort($value, $j * 2, 0, $isBigEndian);
2195 $j++;
2203 $j = 0;
2204 while (($j < $count) && ($j < $origCount)) {
2205 $this->_putLong($value, $j * 4, $origValue[$j], $isBigEndian);
2206 $j++;
2209 while ($j < $count) {
2210 $this->_putLong($value, $j * 4, 0, $isBigEndian);
2211 $j++;
2219 $j = 0;
2220 while (($j < $count) && ($j < $origCount)) {
2221 $v = $origValue[$j];
2231 $this->_putLong($value, $j * 8, $a, $isBigEndian);
2232 $this->_putLong($value, ($j * 8) + 4, $b, $isBigEndian);
2233 $j++;
2236 while ($j < $count) {
2237 $this->_putLong($value, $j * 8, 0, $isBigEndian);
2238 $this->_putLong($value, ($j * 8) + 4, 0, $isBigEndian);
2239 $j++;
2247 $j = 0;
2248 while (($j < $count) && ($j < $origCount)) {
2249 $this->_putByte($value, $j, $origValue[$j]);
2250 $j++;
2253 while ($j < $count) {
2254 $this->_putByte($value, $j, 0);
2255 $j++;
2276 $j = 0;
2277 while (($j < $count) && ($j < $origCount)) {
2278 $this->_putShort($value, $j * 2, $origValue[$j], $isBigEndian);
2279 $j++;
2282 while ($j < $count) {
2283 $this->_putShort($value, $j * 2, 0, $isBigEndian);
2284 $j++;
2292 $j = 0;
2293 while (($j < $count) && ($j < $origCount)) {
2294 $this->_putLong($value, $j * 4, $origValue[$j], $isBigEndian);
2295 $j++;
2298 while ($j < $count) {
2299 $this->_putLong($value, $j * 4, 0, $isBigEndian);
2300 $j++;
2308 $j = 0;
2309 while (($j < $count) && ($j < $origCount)) {
2310 $v = $origValue[$j];
2321 $this->_putLong($value, $j * 8, $a, $isBigEndian);
2322 $this->_putLong($value, ($j * 8) + 4, $b, $isBigEndian);
2323 $j++;
2326 while ($j < $count) {
2327 $this->_putLong($value, $j * 8, 0, $isBigEndian);
2328 $this->_putLong($value, ($j * 8) + 4, 0, $isBigEndian);
2329 $j++;
2337 $j = 0;
2338 while (($j < $count) && ($j < $origCount)) {
2339 $v = strval($origValue[$j]);
2346 $this->_putString($value, $j * 4, $v);
2347 $j++;
2350 while ($j < $count) {
2352 $this->_putString($value, $j * 4, $v);
2353 $j++;
2361 $j = 0;
2362 while (($j < $count) && ($j < $origCount)) {
2363 $v = strval($origValue[$j]);
2370 $this->_putString($value, $j * 8, $v);
2371 $j++;
2374 while ($j < $count) {
2376 $this->_putString($value, $j * 8, $v);
2377 $j++;