Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 200 for cctype (0.14 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/common/targets.h

    #ifndef TENSORFLOW_COMPILER_MLIR_LITE_EXPERIMENTAL_TAC_COMMON_TARGETS_H_
    #define TENSORFLOW_COMPILER_MLIR_LITE_EXPERIMENTAL_TAC_COMMON_TARGETS_H_
    
    #include <algorithm>
    #include <cctype>
    #include <functional>
    #include <optional>
    #include <string>
    #include <vector>
    
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/StringRef.h"
    #include "mlir/IR/Operation.h"  // from @llvm-project
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/target_hardware.cc

    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/compiler/mlir/lite/experimental/tac/hardwares/target_hardware.h"
    
    #include <algorithm>
    #include <cctype>
    #include <functional>
    #include <memory>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "llvm/ADT/DenseMap.h"
    #include "llvm/Support/raw_ostream.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 21:39:59 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/tensorflow/transforms/einsum.h"
    
    #include <algorithm>
    #include <cctype>
    #include <climits>
    #include <cstdint>
    #include <optional>
    #include <string>
    #include <tuple>
    #include <utility>
    #include <vector>
    
    #include "absl/memory/memory.h"
    #include "llvm/ADT/ArrayRef.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. src/cmd/fix/cftype.go

    	// (*unsafe.Pointer)(x) where x is type *bad -> (*unsafe.Pointer)(unsafe.Pointer(x))
    	// (*bad.type)(x) where x is type *unsafe.Pointer -> (*bad.type)(unsafe.Pointer(x))
    	walk(f, func(n any) {
    		if n == nil {
    			return
    		}
    		// Find pattern like (*a.b)(x)
    		c, ok := n.(*ast.CallExpr)
    		if !ok {
    			return
    		}
    		if len(c.Args) != 1 {
    			return
    		}
    		p, ok := c.Fun.(*ast.ParenExpr)
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:25:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. tensorflow/c/ops.cc

    }
    
    #define DEFINE_TF_GETATTR(func, c_type, cc_type)                         \
      void TF_ShapeInferenceContext_GetAttr##func(                           \
          TF_ShapeInferenceContext* ctx, const char* attr_name, c_type* val, \
          TF_Status* status) {                                               \
        TF_SetStatus(status, TF_OK, "");                                     \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 28 22:41:35 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/text/Tokenizer.java

            wordChars(ctype2, 'a', 'z');
            wordChars(ctype2, 'A', 'Z');
            wordChars(ctype2, '0', '9');
            wordChar(ctype2, '@');
            wordChar(ctype2, '|');
            wordChar(ctype2, '_');
            wordChar(ctype2, '?');
            wordChar(ctype2, '>');
            wordChar(ctype2, '=');
            wordChar(ctype2, '!');
            wordChar(ctype2, '<');
            wordChar(ctype2, '"');
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. security/pkg/pki/ca/ca.go

    )
    
    // SigningCAFileBundle locations of the files used for the signing CA
    type SigningCAFileBundle struct {
    	RootCertFile    string
    	CertChainFiles  []string
    	SigningCertFile string
    	SigningKeyFile  string
    }
    
    var pkiCaLog = log.RegisterScope("pkica", "Citadel CA log")
    
    // caTypes is the enum for the CA type.
    type caTypes int
    
    type CertOpts struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  8. src/cmd/cgo/out.go

    			func(i int, aname string, atype ast.Expr) {
    				argField(atype, "r%d", i)
    			})
    		if ctype == "struct {\n" {
    			ctype += "\t\tchar unused;\n" // avoid empty struct
    		}
    		ctype += "\t}"
    		fmt.Fprintf(gotype, "\t}")
    
    		// Get the return type of the wrapper function
    		// compiled by gcc.
    		gccResult := ""
    		if fntype.Results == nil || len(fntype.Results.List) == 0 {
    			gccResult = "void"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. tensorflow/c/kernels.cc

          break;
      }
    }
    
    #define DEFINE_TF_GETATTR(func, c_type, cc_type, attr_type, list_field)        \
      void TF_OpKernelConstruction_GetAttr##func(TF_OpKernelConstruction* ctx,     \
                                                 const char* attr_name,            \
                                                 c_type* val, TF_Status* status) { \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  10. src/cmd/fix/cftype_test.go

    var z = x != 0
    `,
    	},
    	{
    		Name: "cftype.StructField",
    		In: `package main
    
    // typedef const void *CFTypeRef;
    import "C"
    
    type T struct {
    	x C.CFTypeRef
    }
    
    var t = T{x: nil}
    `,
    		Out: `package main
    
    // typedef const void *CFTypeRef;
    import "C"
    
    type T struct {
    	x C.CFTypeRef
    }
    
    var t = T{x: 0}
    `,
    	},
    	{
    		Name: "cftype.FunctionArgument",
    		In: `package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 22:02:42 UTC 2022
    - 3.2K bytes
    - Viewed (0)
Back to top