/third_party/lwip/src/apps/http/ |
D | httpd.c | 127 #define HTTP_IS_DYNAMIC_FILE(hs) ((hs)->buf != NULL) argument 129 #define HTTP_IS_DYNAMIC_FILE(hs) 0 argument 136 #define HTTP_IS_DATA_VOLATILE(hs) (HTTP_IS_DYNAMIC_FILE(hs) ? TCP_WRITE_FLAG_COPY : 0) argument 140 #define HTTP_IS_HDR_VOLATILE(hs, ptr) 0 argument 308 static err_t http_close_conn(struct altcp_pcb *pcb, struct http_state *hs); 309 static err_t http_close_or_abort_conn(struct altcp_pcb *pcb, struct http_state *hs, u8_t abort_conn… 310 static err_t http_find_file(struct http_state *hs, const char *uri, int is_09); 311 static err_t http_init_file(struct http_state *hs, struct fs_file *file, int is_09, const char *uri… 313 static u8_t http_check_eof(struct altcp_pcb *pcb, struct http_state *hs); 341 #define http_cgi_params hs->params [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | recursiveTypeReferences1.types | 483 function cons(hs: HTMLHeadingElement[]): Tree { 484 >cons : (hs: HTMLHeadingElement[]) => Tree 485 >hs : HTMLHeadingElement[] 487 return hs 488 …hs .reduce<HTMLHeadingElement[][]>((hss, h) => { const hs = hss.pop()!; return hs.len… 489 …hs .reduce<HTMLHeadingElement[][]>((hss, h) => { const hs = hss.pop()!; return hs.len… 490 …hs .reduce<HTMLHeadingElement[][]>((hss, h) => { const hs = hss.pop()!; return hs.len… 491 >hs .reduce : { (callbackfn: (previousValue: HTMLHeadingElement, currentValue: HTMLHeadingElemen… 492 >hs : HTMLHeadingElement[] 496 … const hs = hss.pop()!; return hs.length === 0 || level(h) > level(hs[0]) ? concat(hs… [all …]
|
D | recursiveTypeReferences1.js | 112 function cons(hs: HTMLHeadingElement[]): Tree { 113 return hs 115 const hs = hss.pop()!; constant 116 return hs.length === 0 || level(h) > level(hs[0]) 117 ? concat(hss, [concat(hs, [h])]) 118 : concat(hss, [hs, [h]]); 120 .reduce<Tree>((node, hs) => 121 hs.length === 0 123 : concat<Tree[number]>(node, [[hs.shift()!, cons(hs)]]) 195 function cons(hs) { argument [all …]
|
D | recursiveTypeReferences1.symbols | 394 function cons(hs: HTMLHeadingElement[]): Tree { 396 >hs : Symbol(hs, Decl(recursiveTypeReferences1.ts, 110, 14)) 400 return hs 401 …hs .reduce<HTMLHeadingElement[][]>((hss, h) => { const hs = hss.pop()!; return hs.len… 402 >hs .reduce : Symbol(Array.reduce, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(… 403 >hs : Symbol(hs, Decl(recursiveTypeReferences1.ts, 110, 14)) 411 const hs = hss.pop()!; 412 >hs : Symbol(hs, Decl(recursiveTypeReferences1.ts, 113, 11)) 417 return hs.length === 0 || level(h) > level(hs[0]) 418 >hs.length : Symbol(Array.length, Decl(lib.es5.d.ts, --, --)) [all …]
|
D | recursiveTypeReferences1.errors.txt | 143 function cons(hs: HTMLHeadingElement[]): Tree { 144 return hs 146 const hs = hss.pop()!; 147 return hs.length === 0 || level(h) > level(hs[0]) 148 ? concat(hss, [concat(hs, [h])]) 153 : concat(hss, [hs, [h]]); 157 .reduce<Tree>((node, hs) => 158 hs.length === 0 160 : concat<Tree[number]>(node, [[hs.shift()!, cons(hs)]])
|
/third_party/libwebsockets/lib/misc/ |
D | ieeehalfprecision.c | 91 uint16_t hs, he, hm; in lws_singles2halfp() local 123 hs = (uint16_t) (xs >> 16); // Sign bit in lws_singles2halfp() 148 *hp = hs | hm; in lws_singles2halfp() 158 *hp = (uint16_t)((hs | he | hm) + (uint16_t)1u); in lws_singles2halfp() 160 *hp = hs | he | hm; // No rounding in lws_singles2halfp() 166 uint16_t hs, he, hm; in lws_halfp2singles() local 177 hs = h & 0x8000u; // Pick off sign bit in lws_halfp2singles() 191 xs = ((uint32_t) hs) << 16; // Sign bit in lws_halfp2singles() 207 *xp = (((uint32_t)hs) << 16) | ((uint32_t)0x7F800000u); in lws_halfp2singles() 220 xs = ((uint32_t)hs) << 16; // Sign bit in lws_halfp2singles()
|
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
D | UnicodeSetPerf.java | 28 HashSet hs; field in UnicodeSetPerf 44 hs = new HashSet(); in setup() 70 hs.clear(); 75 hs.add(new Integer(cp)); 108 hs.clear(); 111 hs.add(new Integer(it.codepoint)); 117 if (hs.contains(new Integer(cp))) { 146 hs.clear(); 149 hs.add(new Integer(it.codepoint)); 154 Iterator itr = hs.iterator();
|
/third_party/typescript/tests/cases/conformance/types/typeRelationships/recursiveTypes/ |
D | recursiveTypeReferences1.ts | 114 function cons(hs: HTMLHeadingElement[]): Tree { 115 return hs 117 const hs = hss.pop()!; constant 118 return hs.length === 0 || level(h) > level(hs[0]) 119 ? concat(hss, [concat(hs, [h])]) 120 : concat(hss, [hs, [h]]); 122 .reduce<Tree>((node, hs) => 123 hs.length === 0 125 : concat<Tree[number]>(node, [[hs.shift()!, cons(hs)]])
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a6xx/ |
D | fd6_program.c | 305 OUT_RING(ring, COND(state->hs, in setup_config_stateobj() 307 A6XX_HLSQ_HS_CNTL_CONSTLEN(state->hs->constlen))); in setup_config_stateobj() 325 OUT_RING(ring, COND(state->hs, in setup_config_stateobj() 327 A6XX_SP_HS_CONFIG_NIBO(ir3_shader_nibo(state->hs)) | in setup_config_stateobj() 328 A6XX_SP_HS_CONFIG_NTEX(state->hs->num_samp) | in setup_config_stateobj() 329 A6XX_SP_HS_CONFIG_NSAMP(state->hs->num_samp))); in setup_config_stateobj() 414 const struct ir3_shader_variant *hs = state->hs; in setup_stateobj() local 436 if (hs) in setup_stateobj() 437 vs_primitive_regid = ir3_find_sysval_regid(hs, SYSTEM_VALUE_PRIMITIVE_ID); in setup_stateobj() 444 if (hs) { in setup_stateobj() [all …]
|
D | fd6_const.c | 132 unsigned num_vertices = emit->hs in fd6_build_tess_consts() 143 if (emit->hs) { in fd6_build_tess_consts() 147 emit->hs->output_size, emit->patch_vertices}; in fd6_build_tess_consts() 149 emit_stage_tess_consts(constobj, emit->hs, hs_params, in fd6_build_tess_consts() 158 emit->hs->output_size, /* hs vertex stride (dwords) */ in fd6_build_tess_consts() 159 emit->hs->tess.tcs_vertices_out}; in fd6_build_tess_consts() 270 emit->vs, emit->hs, emit->ds, emit->gs, emit->fs, in fd6_build_user_consts()
|
D | fd6_draw.c | 172 emit.key.hs = ctx->prog.hs; in fd6_draw_vbo() 175 if (!(ctx->prog.hs && ctx->prog.ds)) in fd6_draw_vbo() 194 if (!(emit.key.hs || emit.key.ds || emit.key.gs || indirect)) in fd6_draw_vbo() 217 emit.hs = fd6_emit_get_prog(&emit)->hs; in fd6_draw_vbo() 235 ctx->stats.hs_regs += COND(emit.hs, ir3_shader_halfregs(emit.hs)); in fd6_draw_vbo() 271 FD6_TESS_PARAM_SIZE / (emit.hs->output_size * 4)); in fd6_draw_vbo()
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_configdialog.py | 426 hs = d.highlight_sample 427 hs.focus_force() 428 hs.see(1.0) 429 hs.update_idletasks() 436 x, y, dx, dy = hs.bbox(start) 439 hs.event_generate('<Enter>', x=0, y=0) 440 hs.event_generate('<Motion>', x=x, y=y) 441 hs.event_generate('<ButtonPress-1>', x=x, y=y) 442 hs.event_generate('<ButtonRelease-1>', x=x, y=y) 449 for tag in hs.tag_names(): [all …]
|
/third_party/mbedtls/library/ |
D | ssl_msg.c | 2755 mbedtls_ssl_handshake_params * const hs = ssl->handshake; in mbedtls_ssl_update_handshake_status() local 2757 if( ssl->state != MBEDTLS_SSL_HANDSHAKE_OVER && hs != NULL ) in mbedtls_ssl_update_handshake_status() 2771 hs->in_msg_seq++; in mbedtls_ssl_update_handshake_status() 2781 for( offset = 0, hs_buf = &hs->buffering.hs[0]; in mbedtls_ssl_update_handshake_status() 3646 mbedtls_ssl_handshake_params * const hs = ssl->handshake; in ssl_load_buffered_message() local 3650 if( hs == NULL ) in ssl_load_buffered_message() 3660 if( !hs->buffering.seen_ccs ) in ssl_load_buffered_message() 3676 hs->buffering.seen_ccs = 0; in ssl_load_buffered_message() 3686 hs_buf = &hs->buffering.hs[offset]; in ssl_load_buffered_message() 3690 hs->in_msg_seq + offset, in ssl_load_buffered_message() [all …]
|
/third_party/mesa3d/src/gallium/drivers/d3d12/ |
D | d3d12_compiler.cpp | 748 if (expect->hs.primitive_mode != have->hs.primitive_mode || in d3d12_compare_shader_keys() 749 expect->hs.ccw != have->hs.ccw || in d3d12_compare_shader_keys() 750 expect->hs.point_mode != have->hs.point_mode || in d3d12_compare_shader_keys() 751 expect->hs.spacing != have->hs.spacing || in d3d12_compare_shader_keys() 752 expect->hs.patch_vertices_in != have->hs.patch_vertices_in || in d3d12_compare_shader_keys() 753 memcmp(&expect->hs.required_patch_outputs, &have->hs.required_patch_outputs, in d3d12_compare_shader_keys() 755 expect->hs.next_patch_inputs != have->hs.next_patch_inputs) in d3d12_compare_shader_keys() 845 hash += key->hs.next_patch_inputs; in d3d12_shader_key_hash() 925 fill_varyings(&key->hs.required_patch_outputs, prev->current->nir, in d3d12_fill_shader_key() 927 key->hs.next_patch_inputs = patch_mask; in d3d12_fill_shader_key() [all …]
|
/third_party/flutter/skia/include/private/ |
D | SkHalf.h | 42 Sk4h hs = Sk4h::Load(&rgba); in SkHalfToFloat_finite_ftz() local 47 : [hs] "w" (hs.fVec)); // w: read-only NEON register in SkHalfToFloat_finite_ftz() 50 Sk4i bits = SkNx_cast<int>(hs), // Expand to 32 bit. in SkHalfToFloat_finite_ftz()
|
/third_party/skia/include/private/ |
D | SkHalf.h | 42 Sk4h hs = Sk4h::Load(&rgba); in SkHalfToFloat_finite_ftz() local 47 : [hs] "w" (hs.fVec)); // w: read-only NEON register in SkHalfToFloat_finite_ftz() 50 Sk4i bits = SkNx_cast<int>(hs), // Expand to 32 bit. in SkHalfToFloat_finite_ftz()
|
/third_party/skia/third_party/externals/swiftshader/src/Common/ |
D | Half.hpp | 42 } hs; in shortAsHalf() local 44 hs.s = s; in shortAsHalf() 46 return hs.h; in shortAsHalf()
|
/third_party/rust/crates/nom/assets/ |
D | links.txt | 7 http://okmij.org/ftp/Haskell/Iteratee/Iteratee.hs 9 http://okmij.org/ftp/Haskell/Iteratee/IterDemo.hs 10 http://okmij.org/ftp/Haskell/Iteratee/IterDemo1.hs 17 http://okmij.org/ftp/Haskell/Iteratee/Iteratee.hs
|
/third_party/gstreamer/gstplugins_bad/sys/v4l2codecs/ |
D | gstv4l2format.c | 105 gint x_tiles, y_tiles, ws, hs, padded_height; in set_stride() local 108 hs = GST_VIDEO_FORMAT_INFO_TILE_HS (finfo); in set_stride() 112 padded_height = GST_ROUND_UP_N (padded_height, 1 << hs); in set_stride() 115 y_tiles = padded_height >> hs; in set_stride()
|
/third_party/libwebsockets/lib/cose/ |
D | cose_validate_alg.c | 195 size_t hs, shs; in lws_cose_val_alg_destroy() local 217 hs = lws_genhash_size(alg->hash_ctx.type); in lws_cose_val_alg_destroy() 220 lwsl_notice("%d %d %d\n", (int)hs, (int)keybits, (int)against_len); in lws_cose_val_alg_destroy() 233 shs = hs = lws_genhmac_size(alg->u.hmacctx.type); in lws_cose_val_alg_destroy()
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/namespaces/import_alias_declarations/ |
D | import_alias_declarations_1.ts | 30 export var vb: hZ = { hs: "v" }; 33 export interface hX { hs: string } property
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ir3/ |
D | ir3_cache.h | 42 struct ir3_shader_state *vs, *hs, *ds, *gs, *fs; // 5 pointers member 62 struct ir3_shader_variant *vs, struct ir3_shader_variant *hs,
|
D | ir3_cache.c | 100 if (key->hs) in ir3_cache_lookup() 105 [MESA_SHADER_TESS_CTRL] = ir3_get_shader(key->hs), in ir3_cache_lookup() 183 (key->hs == stobj) || (key->gs == stobj)) { in ir3_cache_invalidate()
|
/third_party/skia/third_party/externals/swiftshader/src/System/ |
D | Half.hpp | 45 } hs; in shortAsHalf() local 47 hs.s = s; in shortAsHalf() 49 return hs.h; in shortAsHalf()
|
/third_party/f2fs-tools/tools/sg_write_buffer/ |
D | sg_pt_linux.c | 727 int hs = ptp->io_hdr.transport_status; in get_scsi_pt_transport_err_str() local 737 if (hs) { in get_scsi_pt_transport_err_str() 738 if ((hs < 0) || (hs >= LINUX_HOST_BYTES_SZ)) in get_scsi_pt_transport_err_str() 739 n = snprintf(cp, m, "Host_status=0x%02x is invalid\n", hs); in get_scsi_pt_transport_err_str() 741 n = snprintf(cp, m, "Host_status=0x%02x [%s]\n", hs, in get_scsi_pt_transport_err_str() 742 linux_host_bytes[hs]); in get_scsi_pt_transport_err_str()
|