/third_party/typescript/tests/baselines/reference/ |
H A D | typeOfThisGeneral.js | 3 private canary: number; 8 var p = this.canary; 10 this.canary = 3; 72 private canary: number; 77 var p = this.canary; 79 this.canary = 3; 189 var p = this.canary;
191 this.canary = 3;
247 var p = this.canary;
249 this.canary [all...] |
/third_party/mesa3d/src/intel/common/tests/ |
H A D | mi_builder_test.cpp | 152 uint64_t canary; member in mi_builder_test 285 memset(&canary, 139, sizeof(canary)); in SetUp() 413 EXPECT_EQ(*(uint32_t *)(output + 12), (uint32_t)canary); 435 EXPECT_EQ(*(uint32_t *)(output + 12), (uint32_t)canary); 439 EXPECT_EQ(*(uint32_t *)(output + 20), (uint32_t)canary); 450 mi_store(&b, mi_reg64(RSVD_TEMP_REG), mi_imm(canary)); 454 mi_store(&b, mi_reg64(RSVD_TEMP_REG), mi_imm(canary)); 465 EXPECT_EQ(*(uint32_t *)(output + 12), (uint32_t)canary); 473 mi_store(&b, mi_reg64(RSVD_TEMP_REG), mi_imm(canary)); [all...] |
/third_party/ltp/testcases/kernel/syscalls/gethostbyname_r/ |
H A D | gethostbyname_r01.c | 35 char canary[sizeof(CANARY)]; member 87 if (strcmp(temp.canary, CANARY) != 0) { in check_vulnerable()
|
/third_party/skia/infra/bots/gen_tasks_logic/ |
H A D | job_builder.go | 194 b.canary("android-master-autoroll") 197 b.canary("skia-autoroll") 200 b.canary("skia-flutter-autoroll")
|
H A D | gen_tasks_logic.go | 1646 // canary generates a task that uses TaskDrivers to trigger canary manual rolls on autorollers. 1648 func (b *jobBuilder) canary(rollerName string) { 1652 b.cmd("./canary",
|
/third_party/musl/porting/liteos_m/user/src/internal/ |
H A D | pthread_impl.h | 24 uintptr_t canary, canary2; member 105 #define CANARY canary
|
/third_party/musl/src/env/ |
H A D | __stack_chk_fail.c | 14 * overwriting the canary via string-manipulation functions. in __init_ssp() 21 __pthread_self()->canary = __stack_chk_guard; in __init_ssp()
|
/third_party/musl/porting/linux/user/src/internal/ |
H A D | pthread_impl.h | 47 uintptr_t canary; member 106 uintptr_t canary; member
|
/third_party/musl/porting/liteos_a/user/src/internal/ |
H A D | pthread_impl.h | 31 uintptr_t canary; member 65 uintptr_t canary; member
|
/third_party/ffmpeg/tests/checkasm/arm/ |
H A D | checkasm.S | 58 @ +8 for stack canary reference. 105 @ Load the number of stack parameters, stack canary and its reference
|
/third_party/musl/porting/liteos_a/user/src/thread/ |
H A D | pthread_create.c | 314 new->canary = self->canary; in __pthread_create()
|
/third_party/musl/src/thread/liteos_a/ |
H A D | pthread_create.c | 314 new->canary = self->canary; in __pthread_create()
|
/third_party/musl/src/internal/ |
H A D | pthread_impl.h | 34 uintptr_t canary; member 99 uintptr_t canary; member
|
/third_party/mesa3d/src/util/ |
H A D | ralloc.c | 53 /* A canary value used to determine whether a pointer is ralloc'd. */ 54 unsigned canary; member 79 assert(info->canary == CANARY); in get_header() 138 info->canary = CANARY; in ralloc_size()
|
/third_party/musl/porting/liteos_m/kernel/src/internal/ |
H A D | pthread_impl.h | 56 #define CANARY canary
|
/third_party/musl/porting/uniproton/kernel/src/internal/ |
H A D | pthread_impl.h | 56 #define CANARY canary
|
/third_party/musl/src/thread/ |
H A D | pthread_create.c | 337 new->canary = self->canary; in __pthread_create()
|
/third_party/musl/src/thread/linux/ |
H A D | pthread_create.c | 523 new->canary = self->canary; in __pthread_create()
|
/third_party/musl/porting/linux/user/src/thread/ |
H A D | pthread_create.c | 459 new->canary = self->canary; in __pthread_create()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | UniformTest.cpp | 993 T canary) in CheckOneElement() 1001 buffer.fill(canary); in CheckOneElement() 1009 ASSERT_EQ(canary, buffer[i]); in CheckOneElement() 1013 ASSERT_EQ(canary, buffer[i]); in CheckOneElement() 989 CheckOneElement(GetUniformV getUniformv, GLuint program, const std::string &name, int components, T canary) CheckOneElement() argument
|
/third_party/lz4/tests/ |
H A D | fuzzer.c | 412 char const canary = (char)(FUZ_rand(&randState) & 255); in FUZ_test() local 415 decodedBuffer[srcSize] = canary; in FUZ_test() 420 FUZ_CHECKTEST(decodedBuffer[srcSize] != canary, "LZ4_decompress_safe() overwrite dst buffer !"); in FUZ_test() 445 char const canary = (char)(FUZ_rand(&randState) & 255); in FUZ_test() local 448 decodedBuffer[srcSize] = canary; in FUZ_test() 453 FUZ_CHECKTEST(decodedBuffer[srcSize] != canary, "LZ4_decompress_safe overwrite dst buffer !"); in FUZ_test()
|
/third_party/node/deps/npm/node_modules/jsbn/ |
H A D | index.js | 13 var canary = 0xdeadbeefcafe; variable 14 var j_lm = ((canary&0xffffff)==0xefcafe);
|
/third_party/rust/crates/memchr/bench/data/code/ |
H A D | rust-library.rs | 10755 let canary = Canary { count: drop_count.clone(), panics: false }; in test_box_slice_clone_panics() 10761 vec![canary.clone(), canary.clone(), canary.clone(), panic, canary].into_boxed_slice(); in test_box_slice_clone_panics() 15826 let mut canary = atomic::AtomicUsize::new(0); in drop_arc() variables 15827 let x = Arc::new(Canary(&mut canary as *mut atomic::AtomicUsize)); in drop_arc() 15829 assert!(canary.load(Acquire) == 1); in drop_arc() 15834 let mut canary = atomic::AtomicUsize::new(0); in drop_arc_weak() variables 15835 let arc = Arc::new(Canary(&mut canary a in drop_arc_weak() [all...] |