Home
last modified time | relevance | path

Searched refs:code (Results 3051 - 3075 of 3559) sorted by relevance

1...<<121122123124125126127128129130>>...143

/third_party/node/deps/v8/src/wasm/
H A Dfunction-body-decoder-impl.h2 // Use of this source code is governed by a BSD-style license that can be
201 uint8_t code = static_cast<ValueTypeCode>(heap_index) & uint_7_mask; in read_heap_type() local
202 switch (code) { in read_heap_type()
212 HeapType::from_code(code).name().c_str()); in read_heap_type()
218 return HeapType::from_code(code); in read_heap_type()
268 ValueTypeCode code = static_cast<ValueTypeCode>(val); in read_value_type() local
269 switch (code) { in read_value_type()
279 HeapType::from_code(code).name().c_str()); in read_value_type()
285 HeapType heap_type = HeapType::from_code(code); in read_value_type()
287 code in read_value_type()
[all...]
/third_party/python/Modules/
H A D_testcapimodule.c471 This is revolting, but delicate code duplication is worse: "almost
472 exactly the same" code is needed to test long long, but the ubiquitous
950 /* Test the L code for PyArg_ParseTuple. This should deliver a long long
976 "L code returned wrong value for long 42"); in test_L_code()
991 "L code returned wrong value for int 42"); in test_L_code()
1533 /* This function not only tests the 'k' getargs code, but also the
1563 "k code returned wrong value for long 0xFFF...FFF"); in test_k_code()
1584 "k code returned wrong value for long -0xFFF..000042"); in test_k_code()
2032 "u code returned wrong value for u'test'"); in test_u_code()
2040 "u# code returne in test_u_code()
3791 const char *code; run_in_subinterp() local
6046 PyObject *code, *globals, *locals; frame_new() local
6075 PyObject *code; eval_eval_code_ex() local
6380 PyObject *code = PyFunction_GetCode(func); function_get_code() local
[all...]
H A D_elementtree.c192 assigned to the attribute by application code; the former
261 /* Avoid DECREFs calling into this code again (cycles, etc.) in clear_extra()
376 [clinic start generated code]*/
377 /*[clinic end generated code: output=da39a3ee5e6b4b0d input=159aa50a54061c22]*/
679 [clinic start generated code]*/
683 /*[clinic end generated code: output=54a884b7cf2295f4 input=3ed648beb5bfa22a]*/ in _elementtree_Element_append_impl()
694 [clinic start generated code]*/
698 /*[clinic end generated code: output=8bcd7a51f94cfff6 input=3c719ff94bf45dd6]*/ in _elementtree_Element_clear_impl()
714 [clinic start generated code]*/
718 /*[clinic end generated code in _elementtree_Element___copy___impl()
3149 PyObject *errmsg, *error, *position, *code; expat_set_error() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Dexr.c97 uint32_t code; member
377 td->he[j].code = td->freq[i] >> 6; in huf_build_dec_table()
379 avpriv_request_sample(s->avctx, "Too big code length"); in huf_build_dec_table()
401 avpriv_request_sample(s->avctx, "Too big code length"); in huf_build_dec_table()
404 td->he[j].code = td->freq[iM] >> 6; in huf_build_dec_table()
410 &td->he[0].code, sizeof(td->he[0]), sizeof(td->he[0].code), in huf_build_dec_table()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/
H A DTransliteratorTest.java2549 int code; in TestScriptAllCodepoints()
2553 code = UScript.getScript(i); in TestScriptAllCodepoints()
2554 if(code==UScript.INVALID_CODE){ in TestScriptAllCodepoints()
2557 String id =UScript.getName(code); in TestScriptAllCodepoints()
2558 String abbr = UScript.getShortName(code); in TestScriptAllCodepoints()
2566 " script code: " +id); in TestScriptAllCodepoints()
2570 +" script code: " +id in TestScriptAllCodepoints()
2581 " script code: " +abbr); in TestScriptAllCodepoints()
2585 +" script code: " +abbr in TestScriptAllCodepoints()
3672 * Improve code coverag
[all...]
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DTransliteratorTest.java2546 int code; in TestScriptAllCodepoints()
2550 code = UScript.getScript(i); in TestScriptAllCodepoints()
2551 if(code==UScript.INVALID_CODE){ in TestScriptAllCodepoints()
2554 String id =UScript.getName(code); in TestScriptAllCodepoints()
2555 String abbr = UScript.getShortName(code); in TestScriptAllCodepoints()
2563 " script code: " +id); in TestScriptAllCodepoints()
2567 +" script code: " +id in TestScriptAllCodepoints()
2578 " script code: " +abbr); in TestScriptAllCodepoints()
2582 +" script code: " +abbr in TestScriptAllCodepoints()
3672 * Improve code coverag
[all...]
/third_party/libcoap/examples/
H A Dcoap-server.c288 coap_pdu_code_t code = coap_pdu_get_code(request); in hnd_get_fetch_time() local
302 if (code == COAP_REQUEST_CODE_GET && query != NULL && in hnd_get_fetch_time()
306 } else if (code == COAP_REQUEST_CODE_FETCH && size == ticks->length && in hnd_get_fetch_time()
442 * Not setting response code will cause empty ACK to be sent in hnd_get_async()
644 coap_pdu_code_t req_code; /* Incoming request code */
1166 * Do not update with response code (hence empty ACK) as will be sending in hnd_proxy_uri()
1460 coap_pdu_code_t code = coap_pdu_get_code(request); in hnd_put_post() local
1464 if (code == COAP_REQUEST_CODE_POST) { in hnd_put_post()
2147 "\t \t\tresources. If max is reached, a 4.06 code is returned\n" in usage()
2836 fprintf(stderr, "Proxy support not available as no Client mode code\ in main()
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dcode-assembler.h2 // Use of this source code is governed by a BSD-style license that can be
21 #include "src/codegen/code-factory.h"
367 // create code objects with TurboFan's backend. This class is mostly a thin
372 // V8 components that need to generate low-level code using this interface
378 // In addition to providing isolation between TurboFan and code generation
654 // The following methods refer to source positions in CSA or Torque code
1177 TNode<CodeT> target = HeapConstant(callable.code()); in CallStub()
1199 TNode<CodeT> target = HeapConstant(callable.code()); in TailCallStub()
1221 // Tailcalls to the given code object with JSCall linkage. The JS arguments
1224 // installed instead of code object
[all...]
/third_party/node/deps/v8/src/compiler/backend/riscv64/
H A Dinstruction-selector-riscv64.cc2 // Use of this source code is governed by a BSD-style license that can be
600 InstructionCode code = kArchStoreWithWriteBarrier; in VisitStore() local
601 code |= MiscField::encode(static_cast<int>(record_write_mode)); in VisitStore()
602 Emit(code, 0, nullptr, input_count, inputs, temp_count, temps); in VisitStore()
2164 InstructionCode code = opcode | AddressingModeField::encode(addressing_mode) | in VisitWord32Compare() local
2166 selector->Emit(code, 1, outputs, input_count, inputs, 3, temp); in VisitWord32Compare()
2190 InstructionCode code = opcode | AddressingModeField::encode(addressing_mode) | in VisitWord32Compare() local
2192 selector->Emit(code, 1, outputs, input_count, inputs, 3, temp); in VisitWord32Compare()
2215 InstructionCode code = opcode | AddressingModeField::encode(addressing_mode) | in VisitWord32Compare() local
2217 selector->Emit(code, in VisitWord32Compare()
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DParseContext.cpp3 // Use of this source code is governed by a BSD-style license that can be
1083 // 4096 registers so this should be reasonable even for aggressively optimizable code. in checkIsValidArraySize()
2278 // code to handle them here.
2480 TIntermNodePair code, in addIfElse()
2486 if (code.node1) in addIfElse()
2488 markStaticReadIfSymbol(code.node1); in addIfElse()
2490 if (code.node2) in addIfElse()
2492 markStaticReadIfSymbol(code.node2); in addIfElse()
2495 // For compile time constant conditions, prune the code now. in addIfElse()
2500 return EnsureBlock(code in addIfElse()
2479 addIfElse(TIntermTyped *cond, TIntermNodePair code, const TSourceLoc &loc) addIfElse() argument
[all...]
/third_party/elfutils/debuginfod/
H A Ddebuginfod.cxx660 int code; member
663 reportable_exception(int c, const string& m): code(c), message(m) {} in reportable_exception()
664 reportable_exception(const string& m): code(503), message(m) {} in reportable_exception()
665 reportable_exception(): code(503), message() {} in reportable_exception()
674 MHD_RESULT rc = MHD_queue_response (c, code, r); in mhd_send_response()
2684 http_code = e.code; in handler_cb()
2702 "code", http_code_str, "type", artifacttype, http_size); in handler_cb()
2704 "code", http_code_str, "type", artifacttype); in handler_cb()
2707 "code", http_code_str, "type", artifacttype, deltas*1000); // prometheus prefers _seconds and floating point in handler_cb()
2709 "code", http_code_st in handler_cb()
[all...]
/third_party/mesa3d/src/microsoft/compiler/
H A Ddxil_module.c125 emit_record_no_abbrev(struct dxil_buffer *b, unsigned code, in emit_record_no_abbrev() argument
129 !dxil_buffer_emit_vbr_bits(b, code, 6) || in emit_record_no_abbrev()
141 emit_record(struct dxil_module *m, unsigned code, in emit_record() argument
144 return emit_record_no_abbrev(&m->buf, code, data, size); in emit_record()
148 emit_record_int(struct dxil_module *m, unsigned code, int value) in emit_record_int() argument
151 return emit_record(m, code, &data, 1); in emit_record_int()
371 * Since this function is only called in asserts, it is not needed to put the code in types_equal()
/third_party/node/deps/openssl/openssl/crypto/aes/asm/
H A Dvpaes-armv8.pl38 # code, but it's constant-time and therefore preferred;
55 $code.=<<___;
157 $code.=<<___;
651 $code.=<<___;
1108 $code.=<<___;
1195 $code.=<<___;
1281 print $code;
/third_party/openssl/crypto/aes/asm/
H A Dvpaes-armv8.pl38 # code, but it's constant-time and therefore preferred;
55 $code.=<<___;
160 $code.=<<___;
663 $code.=<<___;
1127 $code.=<<___;
1214 $code.=<<___;
1300 print $code;
/third_party/vixl/src/aarch64/
H A Dmacro-assembler-aarch64.cc7 // * Redistributions of source code must retain the above copyright notice,
114 // code emitting pools without creating a circular dependency.
188 // cannot control that it is its first use, but we check no code has been in AddEntry()
465 // The user may decide to emit more code after Finalize, emit a branch if in Emit()
510 // The code below supports all five initial value generators, and in Emit()
1899 // The instruction would be a nop. Avoid generating useless code. in Emit()
2745 // To make the code as portable as possible, the format string is encoded in Emit()
2978 // Check the overall code size as well as the size of each component. in Emit()
3064 int code = AcquireFrom(masm_->GetScratchRegisterList()).GetCode(); in Emit() local
3065 return Register(code, size_in_bit in Emit()
3070 int code = AcquireFrom(masm_->GetScratchVRegisterList()).GetCode(); Emit() local
3240 ReleaseByCode(CPURegList* available, int code) Emit() argument
[all...]
/third_party/python/Lib/test/
H A Dtest_unicode.py615 # Testing UTF-16 code point order comparisons...
1858 # start bytes of a 2-byte sequence equivalent to code points < 0x7F
1860 # start bytes of a 4-byte sequence equivalent to code points > 0x10FFFF
2293 # UTF-8 must be roundtrip safe for all code points
2443 code = ord(char)
2444 if code < 0x80:
2447 elif code < 0x100:
2450 elif code < 0x10000:
2604 code = textwrap.dedent(f'''
2656 proc = assert_python_failure('-X', 'dev', '-c', code)
[all...]
/third_party/node/deps/v8/src/codegen/
H A Dcode-stub-assembler.h2 // Use of this source code is governed by a BSD-style license that can be
15 #include "src/compiler/code-assembler.h"
828 TNode<Code> FromCodeT(TNode<CodeT> code) { in FromCodeT() argument
831 #error "This code requires updating for big-endian architectures" in FromCodeT()
837 code, IntPtrConstant(CodeDataContainer::kCodeOffset - kHeapObjectTag))); in FromCodeT()
840 return code; in FromCodeT()
844 TNode<CodeDataContainer> CodeDataContainerFromCodeT(TNode<CodeT> code) { in CodeDataContainerFromCodeT() argument
846 return code; in CodeDataContainerFromCodeT()
848 return LoadObjectField<CodeDataContainer>(code, in CodeDataContainerFromCodeT()
853 TNode<CodeT> ToCodeT(TNode<Code> code) { in ToCodeT() argument
862 ToCodeT(TNode<Code> code, TNode<CodeDataContainer> code_data_container) ToCodeT() argument
[all...]
/third_party/elfutils/libdw/
H A Ddwarf_getmacros.c400 attributes[i].code = (fake_cu.version == 4 ? DW_AT_GNU_macros in read_macros()
546 /* This function might be called from a code that expects to see in dwarf_getmacros()
548 serve most DW_MACRO_{GNU_,}* opcodes to such code, because those in dwarf_getmacros()
/third_party/ffmpeg/libavcodec/x86/
H A Dh264_chromamc_10bit.asm2 ;* MMX/SSE2/AVX-optimized 10-bit H.264 chroma MC code
H A Dh264_weight_10bit.asm2 ;* MMX/SSE2/AVX-optimized 10-bit H.264 weighted prediction code
H A Dh264_weight.asm2 ;* SSE2-optimized weighted prediction code
/third_party/ffmpeg/libavfilter/x86/
H A Dvf_bwdif.asm6 ;* Based on yadif simd code
H A Dyadif-16.asm118 ; code should make it possible to eliminate the move instruction at the end. It
H A Dyadif-10.asm89 ; in the old code is not large enough to correctly select pixels or scores.
/third_party/gn/src/gn/
H A Dinput_conversion.cc2 // Use of this source code is governed by a BSD-style license that can be
31 PARSE_SCOPE, // Treat the input as code and return the resulting scope.
269 Execute the block as GN code and return a scope with the resulting
279 Renders the value contents as a GN code block, reversing the input
291 a scope renders as a GN code block of its values. If the Value was:

Completed in 79 milliseconds

1...<<121122123124125126127128129130>>...143