| OLD | NEW |
| 1 ; Copyright 2014 Google Inc. All Rights Reserved. | 1 ; Copyright 2014 Google Inc. All Rights Reserved. |
| 2 ; | 2 ; |
| 3 ; Licensed under the Apache License, Version 2.0 (the "License"); | 3 ; Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 ; you may not use this file except in compliance with the License. | 4 ; you may not use this file except in compliance with the License. |
| 5 ; You may obtain a copy of the License at | 5 ; You may obtain a copy of the License at |
| 6 ; | 6 ; |
| 7 ; http://www.apache.org/licenses/LICENSE-2.0 | 7 ; http://www.apache.org/licenses/LICENSE-2.0 |
| 8 ; | 8 ; |
| 9 ; Unless required by applicable law or agreed to in writing, software | 9 ; Unless required by applicable law or agreed to in writing, software |
| 10 ; distributed under the License is distributed on an "AS IS" BASIS, | 10 ; distributed under the License is distributed on an "AS IS" BASIS, |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 asan_check_4_byte_write_access_no_flags | 47 asan_check_4_byte_write_access_no_flags |
| 48 asan_check_8_byte_write_access_no_flags | 48 asan_check_8_byte_write_access_no_flags |
| 49 asan_check_10_byte_write_access_no_flags | 49 asan_check_10_byte_write_access_no_flags |
| 50 asan_check_16_byte_write_access_no_flags | 50 asan_check_16_byte_write_access_no_flags |
| 51 asan_check_32_byte_write_access_no_flags | 51 asan_check_32_byte_write_access_no_flags |
| 52 | 52 |
| 53 asan_check_repz_1_byte_cmps_access | 53 asan_check_repz_1_byte_cmps_access |
| 54 asan_check_repz_2_byte_cmps_access | 54 asan_check_repz_2_byte_cmps_access |
| 55 asan_check_repz_4_byte_cmps_access | 55 asan_check_repz_4_byte_cmps_access |
| 56 | 56 |
| 57 asan_check_repz_1_byte_lods_access |
| 58 asan_check_repz_2_byte_lods_access |
| 59 asan_check_repz_4_byte_lods_access |
| 60 |
| 57 asan_check_repz_1_byte_movs_access | 61 asan_check_repz_1_byte_movs_access |
| 58 asan_check_repz_2_byte_movs_access | 62 asan_check_repz_2_byte_movs_access |
| 59 asan_check_repz_4_byte_movs_access | 63 asan_check_repz_4_byte_movs_access |
| 60 | 64 |
| 61 asan_check_repz_1_byte_stos_access | 65 asan_check_repz_1_byte_stos_access |
| 62 asan_check_repz_2_byte_stos_access | 66 asan_check_repz_2_byte_stos_access |
| 63 asan_check_repz_4_byte_stos_access | 67 asan_check_repz_4_byte_stos_access |
| 64 | 68 |
| 65 asan_check_1_byte_cmps_access | 69 asan_check_1_byte_cmps_access |
| 66 asan_check_2_byte_cmps_access | 70 asan_check_2_byte_cmps_access |
| 67 asan_check_4_byte_cmps_access | 71 asan_check_4_byte_cmps_access |
| 68 | 72 |
| 73 asan_check_1_byte_lods_access |
| 74 asan_check_2_byte_lods_access |
| 75 asan_check_4_byte_lods_access |
| 76 |
| 69 asan_check_1_byte_movs_access | 77 asan_check_1_byte_movs_access |
| 70 asan_check_2_byte_movs_access | 78 asan_check_2_byte_movs_access |
| 71 asan_check_4_byte_movs_access | 79 asan_check_4_byte_movs_access |
| 72 | 80 |
| 73 asan_check_1_byte_stos_access | 81 asan_check_1_byte_stos_access |
| 74 asan_check_2_byte_stos_access | 82 asan_check_2_byte_stos_access |
| 75 asan_check_4_byte_stos_access | 83 asan_check_4_byte_stos_access |
| 76 | 84 |
| 77 ; Heap-replacement functions. | 85 ; Heap-replacement functions. |
| 78 asan_GetProcessHeap | 86 asan_GetProcessHeap |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 ; System interceptors. | 129 ; System interceptors. |
| 122 asan_ReadFile | 130 asan_ReadFile |
| 123 asan_ReadFileEx | 131 asan_ReadFileEx |
| 124 asan_WriteFile | 132 asan_WriteFile |
| 125 asan_WriteFileEx | 133 asan_WriteFileEx |
| 126 asan_InterlockedCompareExchange | 134 asan_InterlockedCompareExchange |
| 127 asan_InterlockedIncrement | 135 asan_InterlockedIncrement |
| 128 asan_InterlockedDecrement | 136 asan_InterlockedDecrement |
| 129 asan_InterlockedExchange | 137 asan_InterlockedExchange |
| 130 asan_InterlockedExchangeAdd | 138 asan_InterlockedExchangeAdd |
| OLD | NEW |