Changeset 09ab0a9a in mainline for uspace/lib/bithenge/src
- Timestamp:
- 2018-09-13T12:05:53Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cc74cb5
- Parents:
- b2aaaa0
- git-author:
- Jiri Svoboda <jiri@…> (2018-09-13 07:09:46)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-09-13 12:05:53)
- Location:
- uspace/lib/bithenge/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/bithenge/src/blob.c
rb2aaaa0 r09ab0a9a 291 291 } 292 292 293 294 295 293 typedef struct { 296 294 bithenge_blob_t base; -
uspace/lib/bithenge/src/compound.c
rb2aaaa0 r09ab0a9a 42 42 #include "common.h" 43 43 44 45 46 44 /***************** compose_transform *****************/ 47 45 … … 150 148 } 151 149 152 153 154 150 /***************** if_transform *****************/ 155 151 … … 264 260 } 265 261 266 267 268 262 /***************** partial_transform *****************/ 269 263 -
uspace/lib/bithenge/src/expression.c
rb2aaaa0 r09ab0a9a 67 67 } 68 68 69 70 71 69 /***************** binary_expression *****************/ 72 70 … … 283 281 } 284 282 285 286 287 283 /***************** in_node_expression *****************/ 288 284 … … 320 316 } 321 317 322 323 324 318 /***************** current_node_expression *****************/ 325 319 … … 352 346 return EOK; 353 347 } 354 355 356 348 357 349 /***************** param_expression *****************/ … … 416 408 } 417 409 418 419 420 410 /***************** const_expression *****************/ 421 411 … … 487 477 return rc; 488 478 } 489 490 491 479 492 480 /***************** scope_member_expression *****************/ … … 570 558 return rc; 571 559 } 572 573 574 560 575 561 /***************** subblob_expression *****************/ … … 857 843 } 858 844 859 860 861 845 /***************** expression_transform *****************/ 862 846 … … 937 921 } 938 922 939 940 941 923 /***************** inputless_transform *****************/ 942 924 … … 994 976 return rc; 995 977 } 996 997 998 978 999 979 /***************** concat_blob *****************/ -
uspace/lib/bithenge/src/failure.h
rb2aaaa0 r09ab0a9a 71 71 72 72 /** @endcond */ 73 -
uspace/lib/bithenge/src/script.c
rb2aaaa0 r09ab0a9a 450 450 static bithenge_expression_t *parse_expression(state_t *state); 451 451 452 453 454 452 /***************** Expressions *****************/ 455 453 … … 765 763 return parse_expression_precedence(state, PRECEDENCE_NONE); 766 764 } 767 768 769 765 770 766 /* state->token must be TOKEN_IDENTIFIER when this is called. */ -
uspace/lib/bithenge/src/sequence.c
rb2aaaa0 r09ab0a9a 42 42 #include "common.h" 43 43 44 45 46 44 /***************** seq_node *****************/ 47 45 … … 274 272 return EOK; 275 273 } 276 277 278 274 279 275 /***************** bithenge_new_struct *****************/ … … 630 626 } 631 627 632 633 634 628 /***************** bithenge_repeat_transform *****************/ 635 629 … … 911 905 } 912 906 913 914 915 907 /***************** bithenge_do_while_transform *****************/ 916 908 -
uspace/lib/bithenge/src/transform.c
rb2aaaa0 r09ab0a9a 44 44 #include "common.h" 45 45 46 47 48 46 /***************** transform *****************/ 49 47 … … 181 179 return rc; 182 180 } 183 184 185 181 186 182 /***************** scope *****************/ … … 433 429 } 434 430 435 436 437 431 /***************** barrier_transform *****************/ 438 432 … … 567 561 } 568 562 569 570 571 563 /***************** ascii *****************/ 572 564 … … 612 604 }; 613 605 614 615 616 606 /***************** bit *****************/ 617 607 … … 641 631 &bit_ops, 1, 0 642 632 }; 643 644 645 633 646 634 /***************** bits_be, bits_le *****************/ … … 775 763 }; 776 764 777 778 779 765 /***************** invalid *****************/ 780 766 … … 794 780 &invalid_ops, 1, 0 795 781 }; 796 797 798 782 799 783 /***************** known_length *****************/ … … 950 934 /** @endcond */ 951 935 952 953 954 936 /***************** uint_be, uint_le *****************/ 955 937 … … 1021 1003 &uint_xe_ops, 1, 1 1022 1004 }; 1023 1024 1025 1005 1026 1006 /***************** zero_terminated *****************/
Note:
See TracChangeset
for help on using the changeset viewer.