Searched refs:bitwise (Results 1 – 25 of 342) sorted by relevance
12345678910>>...14
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | hicpp-signed-bitwise.rst | 1 .. title:: clang-tidy - hicpp-signed-bitwise 3 hicpp-signed-bitwise 6 Finds uses of bitwise operations on signed integer types, which may lead to 16 …If this option is set to `true`, the check will not warn on bitwise operations with positive integ…
|
D | bugprone-suspicious-enum-usage.rst | 9 1. When "ADD" or "bitwise OR" is used between two enum which come from different 19 choices (the result "bitwise OR" operation of all enum elements) 20 * enum type variable/enumconstant is used as an argument of a `+` or "bitwise OR
|
/external/libogg/src/ |
D | Makefile.in | 60 am_libogg_la_OBJECTS = framing.lo bitwise.lo 63 am_test_bitwise_OBJECTS = test_bitwise-bitwise.$(OBJEXT) 207 libogg_la_SOURCES = framing.c bitwise.c 209 test_bitwise_SOURCES = bitwise.c 295 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bitwise.Plo@am__quote@ 297 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_bitwise-bitwise.Po@am__quote@ 321 test_bitwise-bitwise.o: bitwise.c 322 …bitwise-bitwise.o -MD -MP -MF "$(DEPDIR)/test_bitwise-bitwise.Tpo" -c -o test_bitwise-bitwise.o `t… 326 …t_bitwise_CFLAGS) $(CFLAGS) -c -o test_bitwise-bitwise.o `test -f 'bitwise.c' || echo '$(srcdir)/'… 328 test_bitwise-bitwise.obj: bitwise.c [all …]
|
D | Makefile.am | 7 libogg_la_SOURCES = framing.c bitwise.c 14 test_bitwise_SOURCES = bitwise.c
|
/external/libogg/macosx/Ogg.xcodeproj/ |
D | project.pbxproj | 10 …734FB2E70B18B36F00D561D7 /* bitwise.c in Sources */ = {isa = PBXBuildFile; fileRef = 730F236109181… 17 …B638C /* bitwise.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode… 79 730F236109181A8D00AB638C /* bitwise.c */, 148 734FB2E70B18B36F00D561D7 /* bitwise.c in Sources */,
|
/external/deqp/doc/testspecs/GLES3/ |
D | functional.shaders.int_op.txt | 35 - bitwise not 42 - bitwise and 43 - bitwise or 44 - bitwise xor
|
/external/mesa3d/src/panfrost/bifrost/ |
D | bi_print.c | 137 if (ins->type == BI_BITWISE && s == 1 && ins->bitwise.src1_invert) { in bi_print_src() 139 assert(ins->op.bitwise != BI_BITWISE_XOR); in bi_print_src() 262 fprintf(fp, "%s", bi_bitwise_op_name(ins->op.bitwise)); in bi_print_instruction() 286 fprintf(fp, ".%cshift", ins->bitwise.rshift ? 'r' : 'l'); in bi_print_instruction() 315 if (ins->type == BI_BITWISE && ins->bitwise.dest_invert) in bi_print_instruction()
|
D | bifrost_compile.c | 677 .op.bitwise = BI_BITWISE_AND, in bi_emit_sample_id() 678 .bitwise.rshift = true, in bi_emit_sample_id() 1237 alu.op.bitwise = BI_BITWISE_OR; in emit_alu() 1238 alu.bitwise.dest_invert = true; in emit_alu() 1245 alu.bitwise.rshift = true; in emit_alu() 1248 alu.op.bitwise = BI_BITWISE_OR; in emit_alu() 1255 alu.op.bitwise = BI_BITWISE_ARSHIFT; in emit_alu() 1256 alu.bitwise.rshift = true; in emit_alu() 1301 alu.op.bitwise = BI_BITWISE_AND; in emit_alu() 1307 alu.op.bitwise = BI_BITWISE_OR; in emit_alu() [all …]
|
/external/mesa3d/.gitlab-ci/piglit/ |
D | glslparser.txt | 1023 spec/ext_gpu_shader4/compiler/bitwise-and-int-int.frag: skip 1024 spec/ext_gpu_shader4/compiler/bitwise-and-int-int.vert: skip 1025 spec/ext_gpu_shader4/compiler/bitwise-and-int-ivec2.frag: skip 1026 spec/ext_gpu_shader4/compiler/bitwise-and-int-ivec2.vert: skip 1027 spec/ext_gpu_shader4/compiler/bitwise-and-int-ivec3.frag: skip 1028 spec/ext_gpu_shader4/compiler/bitwise-and-int-ivec3.vert: skip 1029 spec/ext_gpu_shader4/compiler/bitwise-and-int-ivec4.frag: skip 1030 spec/ext_gpu_shader4/compiler/bitwise-and-int-ivec4.vert: skip 1031 spec/ext_gpu_shader4/compiler/bitwise-and-ivec2-int.frag: skip 1032 spec/ext_gpu_shader4/compiler/bitwise-and-ivec2-int.vert: skip [all …]
|
/external/python/cpython3/Doc/c-api/ |
D | number.rst | 105 Returns the bitwise negation of *o* on success, or ``NULL`` on failure. This is 123 Returns the "bitwise and" of *o1* and *o2* on success and ``NULL`` on failure. 129 Returns the "bitwise exclusive or" of *o1* by *o2* on success, or ``NULL`` on 135 Returns the "bitwise or" of *o1* and *o2* on success, or ``NULL`` on failure. 219 Returns the "bitwise and" of *o1* and *o2* on success and ``NULL`` on failure. The 226 Returns the "bitwise exclusive or" of *o1* by *o2* on success, or ``NULL`` on 233 Returns the "bitwise or" of *o1* and *o2* on success, or ``NULL`` on failure. The
|
/external/tensorflow/tensorflow/core/api_def/python_api/ |
D | api_def_BitwiseAnd.pbtxt | 4 name: "bitwise.bitwise_and"
|
D | api_def_Invert.pbtxt | 4 name: "bitwise.invert"
|
D | api_def_BitwiseXor.pbtxt | 4 name: "bitwise.bitwise_xor"
|
D | api_def_RightShift.pbtxt | 4 name: "bitwise.right_shift"
|
D | api_def_BitwiseOr.pbtxt | 4 name: "bitwise.bitwise_or"
|
D | api_def_LeftShift.pbtxt | 4 name: "bitwise.left_shift"
|
/external/tensorflow/tensorflow/core/api_def/java_api/ |
D | api_def_RightShift.pbtxt | 4 name: "bitwise.RightShift"
|
D | api_def_LeftShift.pbtxt | 4 name: "bitwise.LeftShift"
|
D | api_def_BitwiseAnd.pbtxt | 4 name: "bitwise.BitwiseAnd"
|
D | api_def_BitwiseXor.pbtxt | 4 name: "bitwise.BitwiseXor"
|
D | api_def_Invert.pbtxt | 4 name: "bitwise.Invert"
|
D | api_def_BitwiseOr.pbtxt | 4 name: "bitwise.BitwiseOr"
|
/external/python/cpython2/Doc/c-api/ |
D | number.rst | 104 Returns the bitwise negation of *o* on success, or *NULL* on failure. This is 122 Returns the "bitwise and" of *o1* and *o2* on success and *NULL* on failure. 128 Returns the "bitwise exclusive or" of *o1* by *o2* on success, or *NULL* on 134 Returns the "bitwise or" of *o1* and *o2* on success, or *NULL* on failure. 220 Returns the "bitwise and" of *o1* and *o2* on success and *NULL* on failure. The 227 Returns the "bitwise exclusive or" of *o1* by *o2* on success, or *NULL* on 234 Returns the "bitwise or" of *o1* and *o2* on success, or *NULL* on failure. The
|
/external/llvm-project/llvm/test/Transforms/InstCombine/ |
D | bitcast-bigendian.ll | 95 ; No change. Bitcasts are canonicalized above bitwise logic. 108 ; No change. Bitcasts are canonicalized above bitwise logic. 121 ; No change. Bitcasts are canonicalized above bitwise logic.
|
/external/llvm/test/Transforms/InstCombine/ |
D | bitcast-bigendian.ll | 93 ; Verify that 'xor' of vector and constant is done as a vector bitwise op before the bitcast. 106 ; Verify that 'and' of integer and constant is done as a vector bitwise op before the bitcast. 119 ; Verify that 'or' of vector and constant is done as an integer bitwise op before the bitcast.
|
12345678910>>...14