/external/wpa_supplicant_8/hs20/server/ |
D | sql-example.txt | 1 INSERT INTO osu_config(realm,field,value) VALUES('example.com','fqdn','example.com'); 2 INSERT INTO osu_config(realm,field,value) VALUES('example.com','friendly_name','Example Operator'); 3 INSERT INTO osu_config(realm,field,value) VALUES('example.com','spp_http_auth_url','https://subscri… 4 INSERT INTO osu_config(realm,field,value) VALUES('example.com','trust_root_cert_url','https://osu-s… 5 INSERT INTO osu_config(realm,field,value) VALUES('example.com','trust_root_cert_fingerprint','5b393… 6 INSERT INTO osu_config(realm,field,value) VALUES('example.com','aaa_trust_root_cert_url','https://o… 7 INSERT INTO osu_config(realm,field,value) VALUES('example.com','aaa_trust_root_cert_fingerprint','5… 8 INSERT INTO osu_config(realm,field,value) VALUES('example.com','free_account','free'); 9 INSERT INTO osu_config(realm,field,value) VALUES('example.com','policy_url','https://subscription-s… 10 INSERT INTO osu_config(realm,field,value) VALUES('example.com','remediation_url','https://subscript… [all …]
|
/external/llvm-project/llvm/test/CodeGen/AMDGPU/GlobalISel/ |
D | legalize-insert.mir | 13 ; CHECK: [[INSERT:%[0-9]+]]:_(s64) = G_INSERT [[COPY]], [[COPY1]](s32), 0 14 ; CHECK: $vgpr0_vgpr1 = COPY [[INSERT]](s64) 29 ; CHECK: [[INSERT:%[0-9]+]]:_(s64) = G_INSERT [[COPY]], [[COPY1]](s32), 32 30 ; CHECK: $vgpr0_vgpr1 = COPY [[INSERT]](s64) 46 ; CHECK: [[INSERT:%[0-9]+]]:_(s64) = G_INSERT [[COPY]], [[COPY1]](s32), 16 47 ; CHECK: $vgpr0_vgpr1 = COPY [[INSERT]](s64) 63 ; CHECK: [[INSERT:%[0-9]+]]:_(s96) = G_INSERT [[COPY]], [[COPY1]](s32), 0 64 ; CHECK: $vgpr0_vgpr1_vgpr2 = COPY [[INSERT]](s96) 79 ; CHECK: [[INSERT:%[0-9]+]]:_(s96) = G_INSERT [[COPY]], [[COPY1]](s32), 32 80 ; CHECK: $vgpr0_vgpr1_vgpr2 = COPY [[INSERT]](s96) [all …]
|
D | regbankselect-insert.mir | 15 ; CHECK: [[INSERT:%[0-9]+]]:sgpr(s64) = G_INSERT [[COPY]], [[COPY1]](s32), 0 32 ; CHECK: [[INSERT:%[0-9]+]]:vgpr(s64) = G_INSERT [[COPY2]], [[COPY1]](s32), 0 48 ; CHECK: [[INSERT:%[0-9]+]]:vgpr(s64) = G_INSERT [[COPY]], [[COPY2]](s32), 0 63 ; CHECK: [[INSERT:%[0-9]+]]:sgpr(s64) = G_INSERT [[COPY]], [[COPY1]](s32), 0 79 ; CHECK: [[INSERT:%[0-9]+]]:vgpr(s96) = G_INSERT [[COPY]], [[COPY1]](s32), 0 95 ; CHECK: [[INSERT:%[0-9]+]]:agpr(s64) = G_INSERT [[COPY]], [[COPY1]](s32), 0 112 ; CHECK: [[INSERT:%[0-9]+]]:vgpr(s64) = G_INSERT [[COPY2]], [[COPY1]](s32), 0 128 ; CHECK: [[INSERT:%[0-9]+]]:vgpr(s64) = G_INSERT [[COPY]], [[COPY2]](s32), 0 146 ; CHECK: [[INSERT:%[0-9]+]]:vgpr(s64) = G_INSERT [[COPY2]], [[COPY3]](s32), 0 163 ; CHECK: [[INSERT:%[0-9]+]]:vgpr(s64) = G_INSERT [[COPY2]], [[COPY3]](s32), 0
|
D | regbankselect-split-scalar-load-metadata.mir | 38 ; SI: [[INSERT:%[0-9]+]]:sgpr(<3 x s32>) = G_INSERT [[DEF]], [[LOAD]](<2 x s32>), 0 39 ; SI: [[INSERT1:%[0-9]+]]:sgpr(<3 x s32>) = G_INSERT [[INSERT]], [[LOAD1]](s32), 64 61 ; SI: [[INSERT:%[0-9]+]]:sgpr(<3 x s32>) = G_INSERT [[DEF]], [[LOAD]](<2 x s32>), 0 62 ; SI: [[INSERT1:%[0-9]+]]:sgpr(<3 x s32>) = G_INSERT [[INSERT]], [[LOAD1]](s32), 64
|
/external/llvm-project/lld/test/ELF/ |
D | undef-spell-corrector.s | 7 # RUN: not ld.lld %t.o %t1.o -o /dev/null 2>&1 | FileCheck --check-prefix=INSERT %s -DFILE=%t.o 11 # RUN: not ld.lld %t.so %t1.o -o /dev/null 2>&1 | FileCheck --check-prefix=INSERT %s -DFILE=%t.so 13 # INSERT: error: undefined symbol: bcde 14 # INSERT-NEXT: >>> referenced by {{.*}} 15 # INSERT-NEXT: >>> did you mean: abcde 16 # INSERT-NEXT: >>> defined in: [[FILE]] 17 # INSERT: error: undefined symbol: abcd 18 # INSERT-NEXT: >>> referenced by {{.*}} 19 # INSERT-NEXT: >>> did you mean: abcde 20 # INSERT-NEXT: >>> defined in: [[FILE]] [all …]
|
/external/wpa_supplicant_8/hostapd/ |
D | hostapd.eap_user_sqlite | 15 INSERT INTO users(identity,methods,password,phase2) VALUES ('user','TTLS-MSCHAPV2','password',1); 16 INSERT INTO users(identity,methods,password,phase2) VALUES ('DOMAIN\mschapv2 user','TTLS-MSCHAPV2',… 18 INSERT INTO wildcards(identity,methods) VALUES ('','TTLS,TLS'); 19 INSERT INTO wildcards(identity,methods) VALUES ('0','AKA');
|
/external/llvm-project/lld/test/ELF/linkerscript/ |
D | insert-duplicate.test | 3 ## INSERT commands. Each output section description creates a new instance. 25 SECTIONS { .foo.data : { *(.foo.data) } } INSERT AFTER .foo.text; 28 SECTIONS { .foo.text : { *(.foo.text) } } INSERT AFTER .foo.data; 32 SECTIONS { .foo.data : { *(.foo.data) } } INSERT AFTER .foo.text;
|
D | insert-after.test | 5 ## we check that can use INSERT AFTER to insert sections .foo.data 21 ## There is no main linker script. INSERT AFTER just reorders output sections, 40 SECTIONS { .foo.data : { *(.foo.data) } } INSERT AFTER .data; 43 SECTIONS { .foo.text : {} } INSERT AFTER .text;
|
D | insert-before.test | 5 ## we check that can use INSERT BEFORE to insert sections .foo.data 21 ## There is no main linker script. INSERT BEFORE just reorders output sections, 39 SECTIONS { .foo.data : { *(.foo.data) } } INSERT BEFORE .data; 42 SECTIONS { .foo.text : {} } INSERT BEFORE .text;
|
D | insert-not-exist.test | 8 SECTIONS { .foo.data : {} } INSERT AFTER .not_exist; 9 SECTIONS { .foo.text : {} } INSERT BEFORE .not_exist;
|
D | insert-broken.test | 3 } INSERT .data;
|
/external/llvm-project/llvm/test/CodeGen/X86/GlobalISel/ |
D | legalize-insert-vec512.mir | 29 ; ALL: [[INSERT:%[0-9]+]]:_(<16 x s32>) = G_INSERT [[COPY]], [[COPY1]](<4 x s32>), 0 30 ; ALL: $zmm0 = COPY [[INSERT]](<16 x s32>) 55 ; ALL: [[INSERT:%[0-9]+]]:_(<16 x s32>) = G_INSERT [[COPY]], [[COPY1]](<8 x s32>), 0 56 ; ALL: $zmm0 = COPY [[INSERT]](<16 x s32>)
|
/external/python/cpython3/Tools/pynche/ |
D | TypeinViewer.py | 92 icursor = ew.index(INSERT) 109 i = ew.index(INSERT) 143 xicursor = x.index(INSERT) 144 yicursor = y.index(INSERT) 145 zicursor = z.index(INSERT)
|
/external/python/cpython2/Tools/pynche/ |
D | TypeinViewer.py | 92 icursor = ew.index(INSERT) 109 i = ew.index(INSERT) 143 xicursor = x.index(INSERT) 144 yicursor = y.index(INSERT) 145 zicursor = z.index(INSERT)
|
/external/elfutils/lib/ |
D | dynamicsizehash.c | 207 #define INSERT(name) _INSERT (name) macro 210 INSERT(NAME) (NAME *htab, HASHTYPE hval, TYPE data) in INSERT() function 231 #define INSERT(name) _INSERT (name) macro 234 INSERT(NAME) (NAME *htab, HASHTYPE hval, TYPE data) in INSERT() function
|
/external/llvm/test/Bitcode/ |
D | invalid.test | 52 RUN: FileCheck --check-prefix=INSERT-ARRAY %s 54 RUN: FileCheck --check-prefix=INSERT-STRUCT %s 56 RUN: FileCheck --check-prefix=INSERT-IDXS %s 62 INSERT-ARRAY: INSERTVAL: Invalid array index 63 INSERT-STRUCT: INSERTVAL: Invalid struct index 64 INSERT-IDXS: INSERTVAL: Invalid type 142 RUN: FileCheck --check-prefix=INSERT-0-IDXS %s 144 INSERT-0-IDXS: INSERTVAL: Invalid instruction with 0 indices 157 RUN: FileCheck --check-prefix=INSERT-TYPE-MISMATCH %s 159 INSERT-TYPE-MISMATCH: Inserted value type doesn't match aggregate type
|
/external/llvm-project/llvm/test/Bitcode/ |
D | invalid.test | 55 RUN: FileCheck --check-prefix=INSERT-ARRAY %s 57 RUN: FileCheck --check-prefix=INSERT-STRUCT %s 59 RUN: FileCheck --check-prefix=INSERT-IDXS %s 65 INSERT-ARRAY: INSERTVAL: Invalid array index 66 INSERT-STRUCT: INSERTVAL: Invalid struct index 67 INSERT-IDXS: INSERTVAL: Invalid type 140 RUN: FileCheck --check-prefix=INSERT-0-IDXS %s 142 INSERT-0-IDXS: INSERTVAL: Invalid instruction with 0 indices 155 RUN: FileCheck --check-prefix=INSERT-TYPE-MISMATCH %s 157 INSERT-TYPE-MISMATCH: Inserted value type doesn't match aggregate type
|
/external/pigweed/pw_tokenizer/ |
D | add_tokenizer_sections_to_default_script.ld | 20 * The INSERT directive instructs the linker to append the directives in this 25 INSERT AFTER .debug_info
|
/external/perfetto/docs/visualization/ |
D | perfetto-ui.md | 38 INSERT INTO debug_slices(id, name, ts, dur, depth) 55 INSERT INTO debug_slices 59 INSERT INTO debug_slices
|
/external/llvm-project/llvm/lib/Support/ |
D | regcomp.c | 268 #define INSERT(op, pos) doinsert(p, (sop)(op), HERE()-(pos)+1, pos) macro 412 INSERT(OCH_, conc); /* offset is wrong */ in p_ere() 560 INSERT(OPLUS_, pos); in p_ere_exp() 562 INSERT(OQUEST_, pos); in p_ere_exp() 566 INSERT(OPLUS_, pos); in p_ere_exp() 571 INSERT(OCH_, pos); /* offset slightly wrong */ in p_ere_exp() 745 INSERT(OPLUS_, pos); in p_simp_re() 747 INSERT(OQUEST_, pos); in p_simp_re() 1136 INSERT(OCH_, start); /* offset is wrong... */ in repeat() 1149 INSERT(OCH_, start); in repeat() [all …]
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | regcomp.c | 140 #define INSERT(op, pos) doinsert(p, (sop)(op), HERE()-(pos)+1, pos) macro 284 INSERT(OCH_, conc); /* offset is wrong */ in p_ere() 432 INSERT(OPLUS_, pos); in p_ere_exp() 434 INSERT(OQUEST_, pos); in p_ere_exp() 438 INSERT(OPLUS_, pos); in p_ere_exp() 443 INSERT(OCH_, pos); /* offset slightly wrong */ in p_ere_exp() 617 INSERT(OPLUS_, pos); in p_simp_re() 619 INSERT(OQUEST_, pos); in p_simp_re() 1008 INSERT(OCH_, start); /* offset is wrong... */ in repeat() 1021 INSERT(OCH_, start); in repeat() [all …]
|
/external/libcups/vcnet/regex/ |
D | regcomp.c | 59 #define INSERT(op, pos) doinsert(p, (sop)(op), HERE()-(pos)+1, pos) macro 211 INSERT(OCH_, conc); /* offset is wrong */ 333 INSERT(OPLUS_, pos); 335 INSERT(OQUEST_, pos); 339 INSERT(OPLUS_, pos); 344 INSERT(OCH_, pos); /* offset slightly wrong */ 525 INSERT(OPLUS_, pos); 527 INSERT(OQUEST_, pos); 936 INSERT(OCH_, start); /* offset is wrong... */ 949 INSERT(OCH_, start); [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | regcomp.c | 268 #define INSERT(op, pos) doinsert(p, (sop)(op), HERE()-(pos)+1, pos) macro 412 INSERT(OCH_, conc); /* offset is wrong */ in p_ere() 560 INSERT(OPLUS_, pos); in p_ere_exp() 562 INSERT(OQUEST_, pos); in p_ere_exp() 566 INSERT(OPLUS_, pos); in p_ere_exp() 571 INSERT(OCH_, pos); /* offset slightly wrong */ in p_ere_exp() 745 INSERT(OPLUS_, pos); in p_simp_re() 747 INSERT(OQUEST_, pos); in p_simp_re() 1136 INSERT(OCH_, start); /* offset is wrong... */ in repeat() 1149 INSERT(OCH_, start); in repeat() [all …]
|
/external/llvm/lib/Support/ |
D | regcomp.c | 140 #define INSERT(op, pos) doinsert(p, (sop)(op), HERE()-(pos)+1, pos) macro 284 INSERT(OCH_, conc); /* offset is wrong */ in p_ere() 432 INSERT(OPLUS_, pos); in p_ere_exp() 434 INSERT(OQUEST_, pos); in p_ere_exp() 438 INSERT(OPLUS_, pos); in p_ere_exp() 443 INSERT(OCH_, pos); /* offset slightly wrong */ in p_ere_exp() 617 INSERT(OPLUS_, pos); in p_simp_re() 619 INSERT(OQUEST_, pos); in p_simp_re() 1008 INSERT(OCH_, start); /* offset is wrong... */ in repeat() 1021 INSERT(OCH_, start); in repeat() [all …]
|
/external/llvm-project/mlir/test/Conversion/SPIRVToLLVM/ |
D | bitwise-ops-to-llvm.mlir | 44 // CHECK-SAME: %[[BASE:.*]]: !llvm.i32, %[[INSERT:.*]]: !llvm.i32, %[[OFFSET:.*]]: !llvm.i32, %[[C… 52 // CHECK: %[[SHIFTED_INSERT:.*]] = llvm.shl %[[INSERT]], %[[OFFSET]] : !llvm.i32 59 // CHECK-SAME: %[[BASE:.*]]: !llvm.i64, %[[INSERT:.*]]: !llvm.i64, %[[OFFSET:.*]]: !llvm.i8, %[[CO… 69 // CHECK: %[[SHIFTED_INSERT:.*]] = llvm.shl %[[INSERT]], %[[EXT_OFFSET]] : !llvm.i64 76 // CHECK-SAME: %[[BASE:.*]]: !llvm.i16, %[[INSERT:.*]]: !llvm.i16, %[[OFFSET:.*]]: !llvm.i32, %[[C… 86 // CHECK: %[[SHIFTED_INSERT:.*]] = llvm.shl %[[INSERT]], %[[TRUNC_OFFSET]] : !llvm.i16 93 // CHECK-SAME: %[[BASE:.*]]: !llvm.vec<2 x i32>, %[[INSERT:.*]]: !llvm.vec<2 x i32>, %[[OFFSET:.*]… 111 // CHECK: %[[SHIFTED_INSERT:.*]] = llvm.shl %[[INSERT]], %[[OFFSET_V2]] : !llvm.vec<2 x i32>
|