trans_16.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:18k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/sound/dmasound/trans_16.c
  3.  *
  4.  *  16 bit translation routines.  Only used by Power mac at present.
  5.  *
  6.  *  See linux/drivers/sound/dmasound/dmasound_core.c for copyright and
  7.  *  history prior to 08/02/2001.
  8.  *
  9.  *  08/02/2001 Iain Sandoe
  10.  * split from dmasound_awacs.c
  11.  */
  12. #include <linux/soundcard.h>
  13. #include <asm/uaccess.h>
  14. #include "dmasound.h"
  15. static short dmasound_alaw2dma16[] ;
  16. static short dmasound_ulaw2dma16[] ;
  17. static ssize_t pmac_ct_law(const u_char *userPtr, size_t userCount,
  18.    u_char frame[], ssize_t *frameUsed,
  19.    ssize_t frameLeft);
  20. static ssize_t pmac_ct_s8(const u_char *userPtr, size_t userCount,
  21.   u_char frame[], ssize_t *frameUsed,
  22.   ssize_t frameLeft);
  23. static ssize_t pmac_ct_u8(const u_char *userPtr, size_t userCount,
  24.   u_char frame[], ssize_t *frameUsed,
  25.   ssize_t frameLeft);
  26. static ssize_t pmac_ct_s16(const u_char *userPtr, size_t userCount,
  27.    u_char frame[], ssize_t *frameUsed,
  28.    ssize_t frameLeft);
  29. static ssize_t pmac_ct_u16(const u_char *userPtr, size_t userCount,
  30.    u_char frame[], ssize_t *frameUsed,
  31.    ssize_t frameLeft);
  32. static ssize_t pmac_ctx_law(const u_char *userPtr, size_t userCount,
  33.     u_char frame[], ssize_t *frameUsed,
  34.     ssize_t frameLeft);
  35. static ssize_t pmac_ctx_s8(const u_char *userPtr, size_t userCount,
  36.    u_char frame[], ssize_t *frameUsed,
  37.    ssize_t frameLeft);
  38. static ssize_t pmac_ctx_u8(const u_char *userPtr, size_t userCount,
  39.    u_char frame[], ssize_t *frameUsed,
  40.    ssize_t frameLeft);
  41. static ssize_t pmac_ctx_s16(const u_char *userPtr, size_t userCount,
  42.     u_char frame[], ssize_t *frameUsed,
  43.     ssize_t frameLeft);
  44. static ssize_t pmac_ctx_u16(const u_char *userPtr, size_t userCount,
  45.     u_char frame[], ssize_t *frameUsed,
  46.     ssize_t frameLeft);
  47. static ssize_t pmac_ct_s16_read(const u_char *userPtr, size_t userCount,
  48.    u_char frame[], ssize_t *frameUsed,
  49.    ssize_t frameLeft);
  50. static ssize_t pmac_ct_u16_read(const u_char *userPtr, size_t userCount,
  51.    u_char frame[], ssize_t *frameUsed,
  52.    ssize_t frameLeft);
  53. /*** Translations ************************************************************/
  54. extern int expand_bal; /* Balance factor for expanding (not volume!) */
  55. static int expand_data; /* Data for expanding */
  56. static ssize_t pmac_ct_law(const u_char *userPtr, size_t userCount,
  57.    u_char frame[], ssize_t *frameUsed,
  58.    ssize_t frameLeft)
  59. {
  60. short *table = dmasound.soft.format == AFMT_MU_LAW
  61. ? dmasound_ulaw2dma16 : dmasound_alaw2dma16;
  62. ssize_t count, used;
  63. short *p = (short *) &frame[*frameUsed];
  64. int val, stereo = dmasound.soft.stereo;
  65. frameLeft >>= 2;
  66. if (stereo)
  67. userCount >>= 1;
  68. used = count = min_t(unsigned long, userCount, frameLeft);
  69. while (count > 0) {
  70. u_char data;
  71. if (get_user(data, userPtr++))
  72. return -EFAULT;
  73. val = table[data];
  74. *p++ = val;
  75. if (stereo) {
  76. if (get_user(data, userPtr++))
  77. return -EFAULT;
  78. val = table[data];
  79. }
  80. *p++ = val;
  81. count--;
  82. }
  83. *frameUsed += used * 4;
  84. return stereo? used * 2: used;
  85. }
  86. static ssize_t pmac_ct_s8(const u_char *userPtr, size_t userCount,
  87.   u_char frame[], ssize_t *frameUsed,
  88.   ssize_t frameLeft)
  89. {
  90. ssize_t count, used;
  91. short *p = (short *) &frame[*frameUsed];
  92. int val, stereo = dmasound.soft.stereo;
  93. frameLeft >>= 2;
  94. if (stereo)
  95. userCount >>= 1;
  96. used = count = min_t(unsigned long, userCount, frameLeft);
  97. while (count > 0) {
  98. u_char data;
  99. if (get_user(data, userPtr++))
  100. return -EFAULT;
  101. val = data << 8;
  102. *p++ = val;
  103. if (stereo) {
  104. if (get_user(data, userPtr++))
  105. return -EFAULT;
  106. val = data << 8;
  107. }
  108. *p++ = val;
  109. count--;
  110. }
  111. *frameUsed += used * 4;
  112. return stereo? used * 2: used;
  113. }
  114. static ssize_t pmac_ct_u8(const u_char *userPtr, size_t userCount,
  115.   u_char frame[], ssize_t *frameUsed,
  116.   ssize_t frameLeft)
  117. {
  118. ssize_t count, used;
  119. short *p = (short *) &frame[*frameUsed];
  120. int val, stereo = dmasound.soft.stereo;
  121. frameLeft >>= 2;
  122. if (stereo)
  123. userCount >>= 1;
  124. used = count = min_t(unsigned long, userCount, frameLeft);
  125. while (count > 0) {
  126. u_char data;
  127. if (get_user(data, userPtr++))
  128. return -EFAULT;
  129. val = (data ^ 0x80) << 8;
  130. *p++ = val;
  131. if (stereo) {
  132. if (get_user(data, userPtr++))
  133. return -EFAULT;
  134. val = (data ^ 0x80) << 8;
  135. }
  136. *p++ = val;
  137. count--;
  138. }
  139. *frameUsed += used * 4;
  140. return stereo? used * 2: used;
  141. }
  142. static ssize_t pmac_ct_s16(const u_char *userPtr, size_t userCount,
  143.    u_char frame[], ssize_t *frameUsed,
  144.    ssize_t frameLeft)
  145. {
  146. ssize_t count, used;
  147. int stereo = dmasound.soft.stereo;
  148. short *fp = (short *) &frame[*frameUsed];
  149. frameLeft >>= 2;
  150. userCount >>= (stereo? 2: 1);
  151. used = count = min_t(unsigned long, userCount, frameLeft);
  152. if (!stereo) {
  153. short *up = (short *) userPtr;
  154. while (count > 0) {
  155. short data;
  156. if (get_user(data, up++))
  157. return -EFAULT;
  158. *fp++ = data;
  159. *fp++ = data;
  160. count--;
  161. }
  162. } else {
  163. if (copy_from_user(fp, userPtr, count * 4))
  164. return -EFAULT;
  165. }
  166. *frameUsed += used * 4;
  167. return stereo? used * 4: used * 2;
  168. }
  169. static ssize_t pmac_ct_u16(const u_char *userPtr, size_t userCount,
  170.    u_char frame[], ssize_t *frameUsed,
  171.    ssize_t frameLeft)
  172. {
  173. ssize_t count, used;
  174. int mask = (dmasound.soft.format == AFMT_U16_LE? 0x0080: 0x8000);
  175. int stereo = dmasound.soft.stereo;
  176. short *fp = (short *) &frame[*frameUsed];
  177. short *up = (short *) userPtr;
  178. frameLeft >>= 2;
  179. userCount >>= (stereo? 2: 1);
  180. used = count = min_t(unsigned long, userCount, frameLeft);
  181. while (count > 0) {
  182. short data;
  183. if (get_user(data, up++))
  184. return -EFAULT;
  185. data ^= mask;
  186. *fp++ = data;
  187. if (stereo) {
  188. if (get_user(data, up++))
  189. return -EFAULT;
  190. data ^= mask;
  191. }
  192. *fp++ = data;
  193. count--;
  194. }
  195. *frameUsed += used * 4;
  196. return stereo? used * 4: used * 2;
  197. }
  198. static ssize_t pmac_ctx_law(const u_char *userPtr, size_t userCount,
  199.     u_char frame[], ssize_t *frameUsed,
  200.     ssize_t frameLeft)
  201. {
  202. unsigned short *table = (unsigned short *)
  203. (dmasound.soft.format == AFMT_MU_LAW
  204.  ? dmasound_ulaw2dma16 : dmasound_alaw2dma16);
  205. unsigned int data = expand_data;
  206. unsigned int *p = (unsigned int *) &frame[*frameUsed];
  207. int bal = expand_bal;
  208. int hSpeed = dmasound.hard.speed, sSpeed = dmasound.soft.speed;
  209. int utotal, ftotal;
  210. int stereo = dmasound.soft.stereo;
  211. frameLeft >>= 2;
  212. if (stereo)
  213. userCount >>= 1;
  214. ftotal = frameLeft;
  215. utotal = userCount;
  216. while (frameLeft) {
  217. u_char c;
  218. if (bal < 0) {
  219. if (userCount == 0)
  220. break;
  221. if (get_user(c, userPtr++))
  222. return -EFAULT;
  223. data = table[c];
  224. if (stereo) {
  225. if (get_user(c, userPtr++))
  226. return -EFAULT;
  227. data = (data << 16) + table[c];
  228. } else
  229. data = (data << 16) + data;
  230. userCount--;
  231. bal += hSpeed;
  232. }
  233. *p++ = data;
  234. frameLeft--;
  235. bal -= sSpeed;
  236. }
  237. expand_bal = bal;
  238. expand_data = data;
  239. *frameUsed += (ftotal - frameLeft) * 4;
  240. utotal -= userCount;
  241. return stereo? utotal * 2: utotal;
  242. }
  243. static ssize_t pmac_ctx_s8(const u_char *userPtr, size_t userCount,
  244.    u_char frame[], ssize_t *frameUsed,
  245.    ssize_t frameLeft)
  246. {
  247. unsigned int *p = (unsigned int *) &frame[*frameUsed];
  248. unsigned int data = expand_data;
  249. int bal = expand_bal;
  250. int hSpeed = dmasound.hard.speed, sSpeed = dmasound.soft.speed;
  251. int stereo = dmasound.soft.stereo;
  252. int utotal, ftotal;
  253. frameLeft >>= 2;
  254. if (stereo)
  255. userCount >>= 1;
  256. ftotal = frameLeft;
  257. utotal = userCount;
  258. while (frameLeft) {
  259. u_char c;
  260. if (bal < 0) {
  261. if (userCount == 0)
  262. break;
  263. if (get_user(c, userPtr++))
  264. return -EFAULT;
  265. data = c << 8;
  266. if (stereo) {
  267. if (get_user(c, userPtr++))
  268. return -EFAULT;
  269. data = (data << 16) + (c << 8);
  270. } else
  271. data = (data << 16) + data;
  272. userCount--;
  273. bal += hSpeed;
  274. }
  275. *p++ = data;
  276. frameLeft--;
  277. bal -= sSpeed;
  278. }
  279. expand_bal = bal;
  280. expand_data = data;
  281. *frameUsed += (ftotal - frameLeft) * 4;
  282. utotal -= userCount;
  283. return stereo? utotal * 2: utotal;
  284. }
  285. static ssize_t pmac_ctx_u8(const u_char *userPtr, size_t userCount,
  286.    u_char frame[], ssize_t *frameUsed,
  287.    ssize_t frameLeft)
  288. {
  289. unsigned int *p = (unsigned int *) &frame[*frameUsed];
  290. unsigned int data = expand_data;
  291. int bal = expand_bal;
  292. int hSpeed = dmasound.hard.speed, sSpeed = dmasound.soft.speed;
  293. int stereo = dmasound.soft.stereo;
  294. int utotal, ftotal;
  295. frameLeft >>= 2;
  296. if (stereo)
  297. userCount >>= 1;
  298. ftotal = frameLeft;
  299. utotal = userCount;
  300. while (frameLeft) {
  301. u_char c;
  302. if (bal < 0) {
  303. if (userCount == 0)
  304. break;
  305. if (get_user(c, userPtr++))
  306. return -EFAULT;
  307. data = (c ^ 0x80) << 8;
  308. if (stereo) {
  309. if (get_user(c, userPtr++))
  310. return -EFAULT;
  311. data = (data << 16) + ((c ^ 0x80) << 8);
  312. } else
  313. data = (data << 16) + data;
  314. userCount--;
  315. bal += hSpeed;
  316. }
  317. *p++ = data;
  318. frameLeft--;
  319. bal -= sSpeed;
  320. }
  321. expand_bal = bal;
  322. expand_data = data;
  323. *frameUsed += (ftotal - frameLeft) * 4;
  324. utotal -= userCount;
  325. return stereo? utotal * 2: utotal;
  326. }
  327. static ssize_t pmac_ctx_s16(const u_char *userPtr, size_t userCount,
  328.     u_char frame[], ssize_t *frameUsed,
  329.     ssize_t frameLeft)
  330. {
  331. unsigned int *p = (unsigned int *) &frame[*frameUsed];
  332. unsigned int data = expand_data;
  333. unsigned short *up = (unsigned short *) userPtr;
  334. int bal = expand_bal;
  335. int hSpeed = dmasound.hard.speed, sSpeed = dmasound.soft.speed;
  336. int stereo = dmasound.soft.stereo;
  337. int utotal, ftotal;
  338. frameLeft >>= 2;
  339. userCount >>= (stereo? 2: 1);
  340. ftotal = frameLeft;
  341. utotal = userCount;
  342. while (frameLeft) {
  343. unsigned short c;
  344. if (bal < 0) {
  345. if (userCount == 0)
  346. break;
  347. if (get_user(data, up++))
  348. return -EFAULT;
  349. if (stereo) {
  350. if (get_user(c, up++))
  351. return -EFAULT;
  352. data = (data << 16) + c;
  353. } else
  354. data = (data << 16) + data;
  355. userCount--;
  356. bal += hSpeed;
  357. }
  358. *p++ = data;
  359. frameLeft--;
  360. bal -= sSpeed;
  361. }
  362. expand_bal = bal;
  363. expand_data = data;
  364. *frameUsed += (ftotal - frameLeft) * 4;
  365. utotal -= userCount;
  366. return stereo? utotal * 4: utotal * 2;
  367. }
  368. static ssize_t pmac_ctx_u16(const u_char *userPtr, size_t userCount,
  369.     u_char frame[], ssize_t *frameUsed,
  370.     ssize_t frameLeft)
  371. {
  372. int mask = (dmasound.soft.format == AFMT_U16_LE? 0x0080: 0x8000);
  373. unsigned int *p = (unsigned int *) &frame[*frameUsed];
  374. unsigned int data = expand_data;
  375. unsigned short *up = (unsigned short *) userPtr;
  376. int bal = expand_bal;
  377. int hSpeed = dmasound.hard.speed, sSpeed = dmasound.soft.speed;
  378. int stereo = dmasound.soft.stereo;
  379. int utotal, ftotal;
  380. frameLeft >>= 2;
  381. userCount >>= (stereo? 2: 1);
  382. ftotal = frameLeft;
  383. utotal = userCount;
  384. while (frameLeft) {
  385. unsigned short c;
  386. if (bal < 0) {
  387. if (userCount == 0)
  388. break;
  389. if (get_user(data, up++))
  390. return -EFAULT;
  391. data ^= mask;
  392. if (stereo) {
  393. if (get_user(c, up++))
  394. return -EFAULT;
  395. data = (data << 16) + (c ^ mask);
  396. } else
  397. data = (data << 16) + data;
  398. userCount--;
  399. bal += hSpeed;
  400. }
  401. *p++ = data;
  402. frameLeft--;
  403. bal -= sSpeed;
  404. }
  405. expand_bal = bal;
  406. expand_data = data;
  407. *frameUsed += (ftotal - frameLeft) * 4;
  408. utotal -= userCount;
  409. return stereo? utotal * 4: utotal * 2;
  410. }
  411. /* data in routines... */
  412. static ssize_t pmac_ct_s8_read(const u_char *userPtr, size_t userCount,
  413.   u_char frame[], ssize_t *frameUsed,
  414.   ssize_t frameLeft)
  415. {
  416. ssize_t count, used;
  417. short *p = (short *) &frame[*frameUsed];
  418. int val, stereo = dmasound.soft.stereo;
  419. frameLeft >>= 2;
  420. if (stereo)
  421. userCount >>= 1;
  422. used = count = min_t(unsigned long, userCount, frameLeft);
  423. while (count > 0) {
  424. u_char data;
  425. val = *p++;
  426. data = val >> 8;
  427. if (put_user(data, (u_char *)userPtr++))
  428. return -EFAULT;
  429. if (stereo) {
  430. val = *p;
  431. data = val >> 8;
  432. if (put_user(data, (u_char *)userPtr++))
  433. return -EFAULT;
  434. }
  435. p++;
  436. count--;
  437. }
  438. *frameUsed += used * 4;
  439. return stereo? used * 2: used;
  440. }
  441. static ssize_t pmac_ct_u8_read(const u_char *userPtr, size_t userCount,
  442.   u_char frame[], ssize_t *frameUsed,
  443.   ssize_t frameLeft)
  444. {
  445. ssize_t count, used;
  446. short *p = (short *) &frame[*frameUsed];
  447. int val, stereo = dmasound.soft.stereo;
  448. frameLeft >>= 2;
  449. if (stereo)
  450. userCount >>= 1;
  451. used = count = min_t(unsigned long, userCount, frameLeft);
  452. while (count > 0) {
  453. u_char data;
  454. val = *p++;
  455. data = (val >> 8) ^ 0x80;
  456. if (put_user(data, (u_char *)userPtr++))
  457. return -EFAULT;
  458. if (stereo) {
  459. val = *p;
  460. data = (val >> 8) ^ 0x80;
  461. if (put_user(data, (u_char *)userPtr++))
  462. return -EFAULT;
  463. }
  464. p++;
  465. count--;
  466. }
  467. *frameUsed += used * 4;
  468. return stereo? used * 2: used;
  469. }
  470. static ssize_t pmac_ct_s16_read(const u_char *userPtr, size_t userCount,
  471.    u_char frame[], ssize_t *frameUsed,
  472.    ssize_t frameLeft)
  473. {
  474. ssize_t count, used;
  475. int stereo = dmasound.soft.stereo;
  476. short *fp = (short *) &frame[*frameUsed];
  477. frameLeft >>= 2;
  478. userCount >>= (stereo? 2: 1);
  479. used = count = min_t(unsigned long, userCount, frameLeft);
  480. if (!stereo) {
  481. short *up = (short *) userPtr;
  482. while (count > 0) {
  483. short data;
  484. data = *fp;
  485. if (put_user(data, up++))
  486. return -EFAULT;
  487. fp+=2;
  488. count--;
  489. }
  490. } else {
  491. if (copy_to_user((u_char *)userPtr, fp, count * 4))
  492. return -EFAULT;
  493. }
  494. *frameUsed += used * 4;
  495. return stereo? used * 4: used * 2;
  496. }
  497. static ssize_t pmac_ct_u16_read(const u_char *userPtr, size_t userCount,
  498.    u_char frame[], ssize_t *frameUsed,
  499.    ssize_t frameLeft)
  500. {
  501. ssize_t count, used;
  502. int mask = (dmasound.soft.format == AFMT_U16_LE? 0x0080: 0x8000);
  503. int stereo = dmasound.soft.stereo;
  504. short *fp = (short *) &frame[*frameUsed];
  505. short *up = (short *) userPtr;
  506. frameLeft >>= 2;
  507. userCount >>= (stereo? 2: 1);
  508. used = count = min_t(unsigned long, userCount, frameLeft);
  509. while (count > 0) {
  510. int data;
  511. data = *fp++;
  512. data ^= mask;
  513. if (put_user(data, up++))
  514. return -EFAULT;
  515. if (stereo) {
  516. data = *fp;
  517. data ^= mask;
  518. if (put_user(data, up++))
  519. return -EFAULT;
  520. }
  521. fp++;
  522. count--;
  523. }
  524. *frameUsed += used * 4;
  525. return stereo? used * 4: used * 2;
  526. }
  527. TRANS transAwacsNormal = {
  528. ct_ulaw: pmac_ct_law,
  529. ct_alaw: pmac_ct_law,
  530. ct_s8: pmac_ct_s8,
  531. ct_u8: pmac_ct_u8,
  532. ct_s16be: pmac_ct_s16,
  533. ct_u16be: pmac_ct_u16,
  534. ct_s16le: pmac_ct_s16,
  535. ct_u16le: pmac_ct_u16,
  536. };
  537. TRANS transAwacsExpand = {
  538. ct_ulaw: pmac_ctx_law,
  539. ct_alaw: pmac_ctx_law,
  540. ct_s8: pmac_ctx_s8,
  541. ct_u8: pmac_ctx_u8,
  542. ct_s16be: pmac_ctx_s16,
  543. ct_u16be: pmac_ctx_u16,
  544. ct_s16le: pmac_ctx_s16,
  545. ct_u16le: pmac_ctx_u16,
  546. };
  547. TRANS transAwacsNormalRead = {
  548. ct_s8: pmac_ct_s8_read,
  549. ct_u8: pmac_ct_u8_read,
  550. ct_s16be: pmac_ct_s16_read,
  551. ct_u16be: pmac_ct_u16_read,
  552. ct_s16le: pmac_ct_s16_read,
  553. ct_u16le: pmac_ct_u16_read,
  554. };
  555. /* translation tables */
  556. /* 16 bit mu-law */
  557. static short dmasound_ulaw2dma16[] = {
  558. -32124, -31100, -30076, -29052, -28028, -27004, -25980, -24956,
  559. -23932, -22908, -21884, -20860, -19836, -18812, -17788, -16764,
  560. -15996, -15484, -14972, -14460, -13948, -13436, -12924, -12412,
  561. -11900, -11388, -10876, -10364, -9852, -9340, -8828, -8316,
  562. -7932, -7676, -7420, -7164, -6908, -6652, -6396, -6140,
  563. -5884, -5628, -5372, -5116, -4860, -4604, -4348, -4092,
  564. -3900, -3772, -3644, -3516, -3388, -3260, -3132, -3004,
  565. -2876, -2748, -2620, -2492, -2364, -2236, -2108, -1980,
  566. -1884, -1820, -1756, -1692, -1628, -1564, -1500, -1436,
  567. -1372, -1308, -1244, -1180, -1116, -1052, -988, -924,
  568. -876, -844, -812, -780, -748, -716, -684, -652,
  569. -620, -588, -556, -524, -492, -460, -428, -396,
  570. -372, -356, -340, -324, -308, -292, -276, -260,
  571. -244, -228, -212, -196, -180, -164, -148, -132,
  572. -120, -112, -104, -96, -88, -80, -72, -64,
  573. -56, -48, -40, -32, -24, -16, -8, 0,
  574. 32124, 31100, 30076, 29052, 28028, 27004, 25980, 24956,
  575. 23932, 22908, 21884, 20860, 19836, 18812, 17788, 16764,
  576. 15996, 15484, 14972, 14460, 13948, 13436, 12924, 12412,
  577. 11900, 11388, 10876, 10364, 9852, 9340, 8828, 8316,
  578. 7932, 7676, 7420, 7164, 6908, 6652, 6396, 6140,
  579. 5884, 5628, 5372, 5116, 4860, 4604, 4348, 4092,
  580. 3900, 3772, 3644, 3516, 3388, 3260, 3132, 3004,
  581. 2876, 2748, 2620, 2492, 2364, 2236, 2108, 1980,
  582. 1884, 1820, 1756, 1692, 1628, 1564, 1500, 1436,
  583. 1372, 1308, 1244, 1180, 1116, 1052, 988, 924,
  584. 876, 844, 812, 780, 748, 716, 684, 652,
  585. 620, 588, 556, 524, 492, 460, 428, 396,
  586. 372, 356, 340, 324, 308, 292, 276, 260,
  587. 244, 228, 212, 196, 180, 164, 148, 132,
  588. 120, 112, 104, 96, 88, 80, 72, 64,
  589. 56, 48, 40, 32, 24, 16, 8, 0,
  590. };
  591. /* 16 bit A-law */
  592. static short dmasound_alaw2dma16[] = {
  593. -5504, -5248, -6016, -5760, -4480, -4224, -4992, -4736,
  594. -7552, -7296, -8064, -7808, -6528, -6272, -7040, -6784,
  595. -2752, -2624, -3008, -2880, -2240, -2112, -2496, -2368,
  596. -3776, -3648, -4032, -3904, -3264, -3136, -3520, -3392,
  597. -22016, -20992, -24064, -23040, -17920, -16896, -19968, -18944,
  598. -30208, -29184, -32256, -31232, -26112, -25088, -28160, -27136,
  599. -11008, -10496, -12032, -11520, -8960, -8448, -9984, -9472,
  600. -15104, -14592, -16128, -15616, -13056, -12544, -14080, -13568,
  601. -344, -328, -376, -360, -280, -264, -312, -296,
  602. -472, -456, -504, -488, -408, -392, -440, -424,
  603. -88, -72, -120, -104, -24, -8, -56, -40,
  604. -216, -200, -248, -232, -152, -136, -184, -168,
  605. -1376, -1312, -1504, -1440, -1120, -1056, -1248, -1184,
  606. -1888, -1824, -2016, -1952, -1632, -1568, -1760, -1696,
  607. -688, -656, -752, -720, -560, -528, -624, -592,
  608. -944, -912, -1008, -976, -816, -784, -880, -848,
  609. 5504, 5248, 6016, 5760, 4480, 4224, 4992, 4736,
  610. 7552, 7296, 8064, 7808, 6528, 6272, 7040, 6784,
  611. 2752, 2624, 3008, 2880, 2240, 2112, 2496, 2368,
  612. 3776, 3648, 4032, 3904, 3264, 3136, 3520, 3392,
  613. 22016, 20992, 24064, 23040, 17920, 16896, 19968, 18944,
  614. 30208, 29184, 32256, 31232, 26112, 25088, 28160, 27136,
  615. 11008, 10496, 12032, 11520, 8960, 8448, 9984, 9472,
  616. 15104, 14592, 16128, 15616, 13056, 12544, 14080, 13568,
  617. 344, 328, 376, 360, 280, 264, 312, 296,
  618. 472, 456, 504, 488, 408, 392, 440, 424,
  619. 88, 72, 120, 104, 24, 8, 56, 40,
  620. 216, 200, 248, 232, 152, 136, 184, 168,
  621. 1376, 1312, 1504, 1440, 1120, 1056, 1248, 1184,
  622. 1888, 1824, 2016, 1952, 1632, 1568, 1760, 1696,
  623. 688, 656, 752, 720, 560, 528, 624, 592,
  624. 944, 912, 1008, 976, 816, 784, 880, 848,
  625. };