/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-fulltext-search/mount-origin/ |
D | lws-fts.js | 49 var jj, n, m, s = "", lic = 0; 57 jj = JSON.parse(xhr.responseText); 59 if (jj.fp) { 60 lic = jj.fp.length; 63 s += "<div class='filepath'>" + jj.fp[n].path + "</div>"; 66 for (m = 0; m < jj.fp[n].hits.length; m++) 67 s += "<tr><td class='r'>" + jj.fp[n].hits[m].l + 68 "</td><td>" + jj.fp[n].hits[m].s + 127 var jj, n, s = "", lic = 0; 132 jj = JSON.parse(xhr.responseText); [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | nestedRecursiveArraysOrObjectsError01.types | 13 >[ [[{ foo: 'asdf', jj: 1 // intentional error }]]] : { foo: string; jj: number… 16 >[[{ foo: 'asdf', jj: 1 // intentional error }]] : { foo: string; jj: number; }[][] 17 >[{ foo: 'asdf', jj: 1 // intentional error }] : { foo: string; jj: number; }[] 18 >{ foo: 'asdf', jj: 1 // intentional error } : { foo: string; jj: number; } 24 jj: 1 // intentional error 25 >jj : number
|
D | nestedRecursiveArraysOrObjectsError01.errors.txt | 1 …cursiveArraysOrObjectsError01.ts(10,9): error TS2322: Type '{ foo: string; jj: number; }' is not a… 2 Object literal may only specify known properties, and 'jj' does not exist in type 'Style'. 15 jj: 1 // intentional error 17 !!! error TS2322: Type '{ foo: string; jj: number; }' is not assignable to type 'Style'. 18 !!! error TS2322: Object literal may only specify known properties, and 'jj' does not exist in ty…
|
D | jsDeclarationsFunctions.js | 57 export { j as jj }; 64 exports.j = exports.jj = exports.ii = exports.i = exports.h = exports.g = exports.f = exports.e = e… 122 exports.jj = j; 178 export { hh as h, i as ii, j as jj };
|
D | nestedRecursiveArraysOrObjectsError01.symbols | 27 jj: 1 // intentional error 28 >jj : Symbol(jj, Decl(nestedRecursiveArraysOrObjectsError01.ts, 8, 20))
|
D | nestedRecursiveArraysOrObjectsError01.js | 11 jj: 1 // intentional error property 21 jj: 1 // intentional error property
|
D | propertyAccess.js | 73 var jj = numIndex[anyVar]; variable 74 var jj: string; variable 231 var jj = numIndex[anyVar]; 232 var jj; variable
|
D | jsDeclarationsFunctionsCjs.js | 58 module.exports.jj = module.exports.j; 112 module.exports.jj = module.exports.j; 161 export { hh as h, i as ii, j as jj };
|
D | jsDeclarationsFunctionsCjs.symbols | 178 module.exports.jj = module.exports.j; 179 >module.exports.jj : Symbol(jj, Decl(index.js, 53, 37)) 180 >module.exports : Symbol(jj, Decl(index.js, 53, 37)) 183 >jj : Symbol(jj, Decl(index.js, 53, 37))
|
/third_party/toybox/toys/other/ |
D | bzcat.c | 164 int hh, ii, jj, kk, symCount, *base, *limit; in read_block_header() local 169 jj = get_bits(bd, 24); in read_block_header() 173 if (ii==0x177245 && jj==0x385090) return RETVAL_LAST_BLOCK; in read_block_header() 176 if (ii!=0x314159 || jj!=0x265359) return RETVAL_NOT_BZIP_DATA; in read_block_header() 192 for (jj=0; jj<16; jj++) in read_block_header() 193 if (kk & (1 << (15 - jj))) in read_block_header() 194 bd->symToByte[bd->symTotal++] = (16 * ii) + jj; in read_block_header() 214 for(jj=0;get_bits(bd,1);jj++) in read_block_header() 215 if (jj>=bd->groupCount) return RETVAL_DATA_ERROR; in read_block_header() 218 uc = bd->mtfSymbol[jj]; in read_block_header() [all …]
|
D | pwgen.c | 39 int length = 8, count, ii, jj, c, rand = 0, x = 0; local 51 for (jj = 0; jj<count; jj++) {
|
/third_party/node/deps/openssl/openssl/crypto/rc5/ |
D | rc5_skey.c | 23 int i, j, m, c, t, ii, jj; in RC5_32_set_key() local 57 ii = jj = 0; in RC5_32_set_key() 63 k = (L[jj] + A + B) & RC5_32_MASK; in RC5_32_set_key() 64 B = L[jj] = ROTATE_l32(k, m); in RC5_32_set_key() 67 if (++jj >= c) in RC5_32_set_key() 68 jj = 0; in RC5_32_set_key()
|
/third_party/openssl/crypto/rc5/ |
D | rc5_skey.c | 23 int i, j, m, c, t, ii, jj; in RC5_32_set_key() local 57 ii = jj = 0; in RC5_32_set_key() 63 k = (L[jj] + A + B) & RC5_32_MASK; in RC5_32_set_key() 64 B = L[jj] = ROTATE_l32(k, m); in RC5_32_set_key() 67 if (++jj >= c) in RC5_32_set_key() 68 jj = 0; in RC5_32_set_key()
|
/third_party/mesa3d/src/amd/vulkan/radix_sort/shaders/ |
D | scatter.glsl | 586 [[unroll]] for (int32_t jj = 1; jj < 32; jj++) 588 match[0] |= (subgroupBroadcast(digit, jj) == digit) ? (1u << jj) : 0; 597 [[unroll]] for (int32_t jj = 1; jj < 32; jj++) 599 match[1] |= (subgroupBroadcast(digit, jj) == digit) ? (1u << jj) : 0; 620 [[unroll]] for (int32_t jj = 1; jj < RS_SUBGROUP_SIZE; jj++) 622 match |= (subgroupBroadcast(digit, jj) == digit) ? (1u << jj) : 0; 645 [[unroll]] for (uint32_t jj = 0; jj < RS_SCATTER_BLOCK_ROWS; jj++) 647 const uint32_t digit = RS_KV_EXTRACT_DIGIT(kv[jj]); 649 const uint32_t rank = kr[jj] & 0xFFFF; 650 const uint32_t count = kr[jj] >> 16; [all …]
|
D | histogram.comp | 377 [[unroll]] for (RS_SUBGROUP_UNIFORM uint32_t jj = 0; jj < RS_HISTOGRAM_BLOCK_ROWS; jj++) \ 379 const uint32_t digit = RS_KV_EXTRACT_DIGIT(kv[jj], pass_); \ 411 [[unroll]] for (RS_SUBGROUP_UNIFORM uint32_t jj = 0; jj < RS_HISTOGRAM_BLOCK_ROWS; jj++) \ 413 const uint32_t digit = RS_KV_EXTRACT_DIGIT(kv[jj], pass_); \
|
/third_party/ffmpeg/libavcodec/ |
D | notchlc.c | 379 for (int jj = 0; jj < 4; jj++) { in decode_blocks() local 380 u[i + ii][j + jj] = u0 + ((udif * (int)(loc & 3) + 2) / 3); in decode_blocks() 381 v[i + ii][j + jj] = v0 + ((vdif * (int)(loc & 3) + 2) / 3); in decode_blocks() 405 for (int jj = 0; jj < 8; jj += 2) { in decode_blocks() local 408 … u[i + ii + iii][j + jj + jjj] = u0 + ((udif * (int)(loc & 3) + 2) / 3); in decode_blocks() 409 … v[i + ii + iii][j + jj + jjj] = v0 + ((vdif * (int)(loc & 3) + 2) / 3); in decode_blocks() 418 for (int jj = 0; jj < 8; jj += 4) { in decode_blocks() local 433 … u[i + ii + iii][j + jj + jjj] = u0 + ((udif * (int)(loc & 3) + 2) / 3); in decode_blocks() 434 … v[i + ii + iii][j + jj + jjj] = v0 + ((vdif * (int)(loc & 3) + 2) / 3); in decode_blocks()
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
D | bio_b64.c | 261 int z, jj; in b64_read() local 263 jj = i & ~3; /* process per 4 */ in b64_read() 265 (unsigned char *)ctx->tmp, jj); in b64_read() 266 if (jj > 2) { in b64_read() 267 if (ctx->tmp[jj - 1] == '=') { in b64_read() 269 if (ctx->tmp[jj - 2] == '=') in b64_read() 276 if (jj != i) { in b64_read() 277 memmove(ctx->tmp, &ctx->tmp[jj], i - jj); in b64_read() 278 ctx->tmp_len = i - jj; in b64_read()
|
/third_party/openssl/crypto/evp/ |
D | bio_b64.c | 261 int z, jj; in b64_read() local 263 jj = i & ~3; /* process per 4 */ in b64_read() 265 (unsigned char *)ctx->tmp, jj); in b64_read() 266 if (jj > 2) { in b64_read() 267 if (ctx->tmp[jj - 1] == '=') { in b64_read() 269 if (ctx->tmp[jj - 2] == '=') in b64_read() 276 if (jj != i) { in b64_read() 277 memmove(ctx->tmp, &ctx->tmp[jj], i - jj); in b64_read() 278 ctx->tmp_len = i - jj; in b64_read()
|
/third_party/selinux/libselinux/src/ |
D | label_backends_android.c | 53 unsigned int ii, jj; in nodups_specs() local 58 for (jj = ii + 1; jj < data->nspec; jj++) { in nodups_specs() 59 if (!strcmp(spec_arr[jj].property_key, in nodups_specs() 63 if (strcmp(spec_arr[jj].lr.ctx_raw, in nodups_specs() 69 spec_arr[jj].lr.ctx_raw, in nodups_specs()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_vif.c | 261 int jj = j - filt_w / 2 + filt_j; in vif_filter1d() local 264 img_coeff = temp[jj]; in vif_filter1d() 270 int jj = j - filt_w / 2 + filt_j; in vif_filter1d() local 273 jj = jj < 0 ? -jj : (jj >= w ? 2 * w - jj - 1 : jj); in vif_filter1d() 275 img_coeff = temp[jj]; in vif_filter1d()
|
/third_party/skia/third_party/externals/icu/source/data/locales/ |
D | wo.txt | 168 "Àjj", 177 "Àjj", 186 "Àjj", 206 "Àjj", 215 "Àjj", 224 "Àjj", 497 "-1"{"àjj. ji weesu"} 498 "0"{"tay ci àjj. ji"} 499 "1"{"àjj. jiy ñëw"} 503 other{"fileek {0} àjj."} [all …]
|
/third_party/icu/icu4c/source/data/locales/ |
D | wo.txt | 201 "Àjj", 210 "Àjj", 219 "Àjj", 239 "Àjj", 248 "Àjj", 257 "Àjj", 530 "-1"{"àjj. ji weesu"} 531 "0"{"tay ci àjj. ji"} 532 "1"{"àjj. jiy ñëw"} 536 other{"fileek {0} àjj."} [all …]
|
/third_party/openssl/test/testutil/ |
D | driver.c | 283 int ii, i, jj, j, jstep; in run_tests() local 363 for (jj = 0; jj < all_tests[i].num; jj++) { in run_tests() 367 if (single_iter != -1 && ((jj + 1) != single_iter)) in run_tests()
|
/third_party/node/deps/openssl/openssl/crypto/aes/asm/ |
D | aesni-sha1-x86_64.pl | 168 my $j=0; my $jj=0; my $r=0; my $sn=0; my $rx=0; 581 $k = (($jj+1)*12/20)*20*$n/12; # 12 aesencs per these 20 rounds 582 @r[$k%$n].='&$aesenc();' if ($jj==$k/$n); 583 $jj++; 612 $k = (($jj+1)*8/20)*20*$n/8; # 8 aesencs per these 20 rounds 613 @r[$k%$n].='&$aesenc();' if ($jj==$k/$n && $rx!=20); 614 $jj++; 647 $k=(($jj+1)*12/20)*20*$n/12; # 12 aesencs per these 20 rounds 648 @r[$k%$n].='&$aesenc();' if ($jj==$k/$n && $rx!=40); 649 $jj++; [all …]
|
/third_party/openssl/crypto/aes/asm/ |
D | aesni-sha1-x86_64.pl | 168 my $j=0; my $jj=0; my $r=0; my $sn=0; my $rx=0; 581 $k = (($jj+1)*12/20)*20*$n/12; # 12 aesencs per these 20 rounds 582 @r[$k%$n].='&$aesenc();' if ($jj==$k/$n); 583 $jj++; 612 $k = (($jj+1)*8/20)*20*$n/8; # 8 aesencs per these 20 rounds 613 @r[$k%$n].='&$aesenc();' if ($jj==$k/$n && $rx!=20); 614 $jj++; 647 $k=(($jj+1)*12/20)*20*$n/12; # 12 aesencs per these 20 rounds 648 @r[$k%$n].='&$aesenc();' if ($jj==$k/$n && $rx!=40); 649 $jj++; [all …]
|