/third_party/node/test/parallel/ |
H A D | test-readline-interface.js | 111 code: 'ERR_INVALID_ARG_VALUE' 124 code: 'ERR_INVALID_ARG_TYPE' 137 code: 'ERR_INVALID_ARG_VALUE' 147 { code: 'ERR_OUT_OF_RANGE' } 155 { code: 'ERR_INVALID_ARG_TYPE' } 164 code: 'ERR_OUT_OF_RANGE', 458 // Move left one character/code point 462 // Move right one character/code point 478 // Move left one character/code point 497 // Move left one character/code poin [all...] |
/third_party/libwebsockets/win32port/zlib/ |
H A D | inflate.c | 10 * - First version -- complete rewrite of inflate to simplify code, avoid
13 * improve code readability and style over the previous zlib inflate code
232 fixed code decoding. Normally this returns fixed tables from inffixed.h.
235 thereafter. This reduces the size of the code by about 2K bytes, in
245 static code *lenfix, *distfix;
246 static code fixed[544];
251 static code *next;
320 printf(" static const code lenfix[%u] = {", size);
in makefixed() 331 printf("\n static const code distfi in makefixed() [all...] |
/third_party/libevdev/test/ |
H A D | test-libevdev-has-event.c | 97 int code, max; in START_TEST() local 113 for (code = 1; code < max; code += 10) { in START_TEST() 115 struct input_absinfo abs = { code, 0, 2, 0, 0, 0}; in START_TEST() 121 *evbit, code, in START_TEST() 126 ck_assert_msg(libevdev_has_event_code(dev, *evbit, code), "for type %d code %d", *evbit, code); in START_TEST() local 167 ck_assert_msg(!libevdev_has_event_code(dev, *evbit, max), "for type %d code in START_TEST() [all...] |
/third_party/node/deps/v8/src/execution/riscv64/ |
H A D | simulator-riscv64.h | 2 // Use of this source code is governed by a BSD-style license that can be 11 // conditions are met : 1. Redistributions of source code must retain the 40 // The original source code covered by the above license above has been 44 // native RISC-V binary. This Simulator allows us to run and debug RISC-V code 45 // generation on regular desktop machines. V8 calls into generated code via the 271 // Generated code will always use doubles. So we will only use even registers. 507 // the ra is set to this value on transition from native C code to 509 // C code. 899 bool IsWatchpoint(uint64_t code); 900 void PrintWatchpoint(uint64_t code); [all...] |
/third_party/skia/src/pdf/ |
H A D | SkPDFGradientShader.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 118 /* Generate Type 4 function code to map t=[0,1) to the passed gradient, 119 clamping at the edges of the range. The generated code will be of the form: 320 * Returns PS function code that applies inverse perspective 324 * After executing this code on a PS stack, the last 2 elements are updated 329 SkDynamicMemoryWStream* code) { in apply_perspective_to_coordinates() 347 code->writeText(" dup "); // x y y in apply_perspective_to_coordinates() 348 SkPDFUtils::AppendScalar(p1, code); // x y y p1 in apply_perspective_to_coordinates() 349 code->writeText(" mul " // x y y*p1 in apply_perspective_to_coordinates() 351 SkPDFUtils::AppendScalar(p0, code); // in apply_perspective_to_coordinates() 328 apply_perspective_to_coordinates(const SkMatrix& inversePerspectiveMatrix, SkDynamicMemoryWStream* code) apply_perspective_to_coordinates() argument [all...] |
/third_party/protobuf/src/google/protobuf/util/internal/ |
H A D | protostream_objectsource_test.cc | 9 // * Redistributions of source code must retain the above copyright 599 EXPECT_EQ(util::error::INVALID_ARGUMENT, status.code()); in TEST_P() 945 EXPECT_EQ(util::error::INTERNAL, status.code()); in TEST_P() 961 EXPECT_EQ(util::error::INTERNAL, status.code()); in TEST_P() 977 EXPECT_EQ(util::error::INTERNAL, status.code()); in TEST_P() 1110 EXPECT_EQ(util::error::INTERNAL, status.code()); in TEST_P() 1121 EXPECT_EQ(util::error::INTERNAL, status.code()); in TEST_P() 1132 EXPECT_EQ(util::error::INTERNAL, status.code()); in TEST_P() 1143 EXPECT_EQ(util::error::INTERNAL, status.code()); in TEST_P()
|
/kernel/linux/linux-5.10/drivers/media/pci/intel/ipu3/ |
H A D | ipu3-cio2.c | 65 * cio2_find_format - lookup color format by fourcc or/and media bus code 67 * @mbus_code: media bus code to match, ignored if null 361 fmt = cio2_find_format(NULL, &q->subdev_fmt.code); in cio2_hw_init() 903 * This code queues the buffer to the CIO2 DMA engine, which starts in cio2_vb2_buf_queue() 904 * running once streaming has started. It is possible that this code in cio2_vb2_buf_queue() 1205 .code = formats[0].mbus_code, in cio2_subdev_open() 1262 u32 mbus_code = fmt->format.code; in cio2_subdev_set_fmt() 1277 fmt->format.code = formats[0].mbus_code; in cio2_subdev_set_fmt() 1281 fmt->format.code = mbus_code; in cio2_subdev_set_fmt() 1300 struct v4l2_subdev_mbus_code_enum *code) in cio2_subdev_enum_mbus_code() 1298 cio2_subdev_enum_mbus_code(struct v4l2_subdev *sd, struct v4l2_subdev_pad_config *cfg, struct v4l2_subdev_mbus_code_enum *code) cio2_subdev_enum_mbus_code() argument [all...] |
/kernel/linux/linux-5.10/drivers/infiniband/hw/hfi1/ |
H A D | pio.c | 24 * - Redistributions of source code must retain the above copyright 1113 * For user contexts, the user handling code has cut off write access in sc_restart() 1337 * Since access to this code block is serialized and in sc_enable() 1674 /* translate a send credit update to a bit code of reasons */ 1677 int code = 0; in fill_code() local 1680 code |= PRC_STATUS_ERR; in fill_code() 1682 code |= PRC_PBC; in fill_code() 1684 code |= PRC_THRESHOLD; in fill_code() 1686 code |= PRC_FILL_ERR; in fill_code() 1688 code | in fill_code() 1707 int code; sc_release_update() local [all...] |
/kernel/linux/linux-6.6/drivers/infiniband/hw/hfi1/ |
H A D | pio.c | 1071 * For user contexts, the user handling code has cut off write access in sc_restart() 1295 * Since access to this code block is serialized and in sc_enable() 1632 /* translate a send credit update to a bit code of reasons */ 1635 int code = 0; in fill_code() local 1638 code |= PRC_STATUS_ERR; in fill_code() 1640 code |= PRC_PBC; in fill_code() 1642 code |= PRC_THRESHOLD; in fill_code() 1644 code |= PRC_FILL_ERR; in fill_code() 1646 code |= PRC_SC_DISABLE; in fill_code() 1647 return code; in fill_code() 1665 int code; sc_release_update() local [all...] |
/kernel/linux/linux-6.6/drivers/media/pci/intel/ipu3/ |
H A D | ipu3-cio2.c | 79 * cio2_find_format - lookup color format by fourcc or/and media bus code 81 * @mbus_code: media bus code to match, ignored if null 362 fmt = cio2_find_format(NULL, &q->subdev_fmt.code); in cio2_hw_init() 904 * This code queues the buffer to the CIO2 DMA engine, which starts in cio2_vb2_buf_queue() 905 * running once streaming has started. It is possible that this code in cio2_vb2_buf_queue() 1199 .code = formats[0].mbus_code, in cio2_subdev_open() 1257 u32 mbus_code = fmt->format.code; in cio2_subdev_set_fmt() 1272 fmt->format.code = formats[0].mbus_code; in cio2_subdev_set_fmt() 1276 fmt->format.code = mbus_code; in cio2_subdev_set_fmt() 1294 struct v4l2_subdev_mbus_code_enum *code) in cio2_subdev_enum_mbus_code() 1292 cio2_subdev_enum_mbus_code(struct v4l2_subdev *sd, struct v4l2_subdev_state *sd_state, struct v4l2_subdev_mbus_code_enum *code) cio2_subdev_enum_mbus_code() argument [all...] |
/third_party/node/deps/openssl/openssl/crypto/aes/asm/ |
H A D | aesfx-sparcv9.pl | 41 $code.=<<___; 234 $code.=<<___; 286 $code.=<<___; 299 $code.=<<___; 331 $code.=<<___; 347 $code.=<<___ if ($i<6); 351 $code.=<<___; 374 $code.=<<___; 382 $code.=<<___; 398 $code [all...] |
/third_party/libcoap/src/ |
H A D | coap_oscore.c | 275 coap_pdu_code_t code = in coap_oscore_new_pdu_encrypted() local 282 uint8_t pdu_code = pdu->code; in coap_oscore_new_pdu_encrypted() 317 code, in coap_oscore_new_pdu_encrypted() 495 pdu->code, in coap_oscore_new_pdu_encrypted() 503 /* First byte of plain is real CoAP code. Pretend it is token */ in coap_oscore_new_pdu_encrypted() 535 osc_pdu->code = COAP_REQUEST_CODE_FETCH; in coap_oscore_new_pdu_encrypted() 540 osc_pdu->code = COAP_RESPONSE_CODE(205); in coap_oscore_new_pdu_encrypted() 597 coap_log_warn("OSCORE: Encryption Failure, result code: %d \n", in coap_oscore_new_pdu_encrypted() 711 coap_pdu_code_t code, in build_and_send_error_pdu() 724 code, in build_and_send_error_pdu() 709 build_and_send_error_pdu(coap_session_t *session, coap_pdu_t *rcvd, coap_pdu_code_t code, const char *diagnostic, uint8_t *echo_data, coap_bin_const_t *kid_context, int encrypt_oscore) build_and_send_error_pdu() argument [all...] |
/third_party/openssl/crypto/aes/asm/ |
H A D | aesfx-sparcv9.pl | 41 $code.=<<___; 234 $code.=<<___; 286 $code.=<<___; 299 $code.=<<___; 331 $code.=<<___; 347 $code.=<<___ if ($i<6); 351 $code.=<<___; 374 $code.=<<___; 382 $code.=<<___; 398 $code [all...] |
/third_party/vk-gl-cts/android/cts/runner/src/com/drawelements/deqp/runner/ |
H A D | DeqpTestRunner.java | 502 String code = values.get("dEQP-TestCaseResult-Code"); in handleTestCaseResult() 511 if (code.compareTo("Pass") == 0) { in handleTestCaseResult() 513 } else if (code.compareTo("NotSupported") == 0) { in handleTestCaseResult() 515 } else if (code.compareTo("QualityWarning") == 0) { in handleTestCaseResult() 517 } else if (code.compareTo("CompatibilityWarning") == 0) { in handleTestCaseResult() 519 } else if (code.compareTo("Fail") == 0 || code.compareTo("ResourceError") == 0 in handleTestCaseResult() 520 || code.compareTo("InternalError") == 0 || code.compareTo("Crash") == 0 in handleTestCaseResult() 521 || code in handleTestCaseResult() [all...] |
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
H A D | sfwoff2.c | 132 FT_Byte code; in Read255UShort() local 137 if ( FT_READ_BYTE( code ) ) in Read255UShort() 139 if ( code == wordCode ) in Read255UShort() 147 else if ( code == oneMoreByteCode1 ) in Read255UShort() 154 else if ( code == oneMoreByteCode2 ) in Read255UShort() 163 *value = code; in Read255UShort() 175 FT_Byte code; in ReadBase128() local 181 code = 0; in ReadBase128() 182 if ( FT_READ_BYTE( code ) ) in ReadBase128() 186 if ( i == 0 && code in ReadBase128() [all...] |
/third_party/toybox/toys/pending/ |
H A D | xzcat.c | 55 * XZ_BUF_ERROR is returned when two consecutive calls to XZ code cannot 58 * least one output byte is still pending. Assuming your code is not buggy, 75 * struct xz_buf - Passing input and output buffers to XZ code 88 * the variables in_pos and out_pos are modified by the XZ code. 366 * could save a few bytes in code size. 411 * The rest of the code is inside this ifdef. It makes things a little more 753 * pointers, which could be problematic in the kernel boot code, which must 1253 uint32_t code; member 1411 * The order below is important on x86 to reduce code size and 1584 rc->code in rc_reset() [all...] |
/device/soc/hisilicon/hi3861v100/sdk_liteos/include/ |
H A D | hi_tsensor.h | 197 * @brief Converts the temperature code into a temperature value.CNcomment:温度码转换成温度值。CNend 200 * Converts the temperature code into a temperature value.CNcomment:将温度码转换成温度值。CNend 203 * @param code [IN] type #hi_u8,temperature value.CNcomment:温度码。CNend 212 hi_s16 hi_tsensor_code_to_temperature(hi_u8 code); 216 * @brief Converts the temperature into a temperature code.CNcomment:温度值转换成温度码。CNend 219 * Converts the temperature into a temperature code.CNcomment:将温度值转换成温度码。CNend 222 * @param temp [IN] type #hi_float,temperature code.CNcomment:温度值。CNend
|
/kernel/linux/linux-5.10/drivers/crypto/cavium/cpt/ |
H A D | cptpf.h | 32 void *code; member
|
/kernel/linux/linux-5.10/arch/arm/mach-pxa/ |
H A D | csb701.c | 13 .code = 0x7,
|
/kernel/linux/linux-5.10/arch/parisc/kernel/ |
H A D | pa7300lc.c | 31 static void pa7300lc_lpmc(int code, struct pt_regs *regs) in pa7300lc_lpmc() argument
|
/kernel/linux/linux-5.10/arch/s390/kernel/ |
H A D | mcount.S | 45 lghi %r14,0 # save condition code
|
/kernel/linux/linux-6.6/arch/powerpc/kernel/ |
H A D | static_call.c | 5 #include <asm/code-patching.h>
|
/kernel/linux/linux-6.6/arch/s390/kernel/ |
H A D | head64.S | 31 brasl %r14,start_kernel # common init code
|
/kernel/linux/linux-5.10/tools/memory-model/scripts/ |
H A D | runlitmushist.sh | 51 exitmsg="failed, exit code $exitcode"
|
/kernel/linux/linux-5.10/drivers/platform/x86/ |
H A D | asus-wmi.h | 72 /* Returns new code, value, and autorelease values in arguments. 73 * Return ASUS_WMI_KEY_IGNORE in code if event should be ignored. */ 74 void (*key_filter) (struct asus_wmi_driver *driver, int *code,
|