.righthalf { position:relative; left:51%; top:10.1%; } Work Style I 1. Get Topic From The Community 2. Select Easy Or Interested Area From The Topic 3. Play With It. 4. Organize. 5. Make Connection Between Works(Posts) To Make A Beautiful Work. Work Style II 1. Topic Selected By Us using Feedback. 2. Select Easy Or Interested …
Daily Archives: September 12, 2012
MACHINE LEARNING
SOLUTIONS BY SOFTWARE TESTING WITH THE HELP OF STATISTICAL SCIENCES
semantic patch using coccinelle
commandline session $ 4.2.36 26 525—> cat source.c #include int main(int argc, char *argv[]) { unsigned int bytes = 1024 * 1024; char *buf; /* allocate memory */ buf = alloca(bytes); return 0; } $ 4.2.36 27 526—> cat source.cocci @@ expression E; @@ -alloca(E) +malloc(E) $ 4.2.36 28 527—> spatch –sp-file source.cocci source.c init_defs_builtins: …