Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for StrNCpy (0.23 sec)

  1. src/runtime/cgo/gcc_util.c

    	So we choose strncpy(_, _, 0): it requires an extra header,
    	but it's standard and should be very efficient.
    
    	GCC 7 has an unfortunate habit of optimizing out strncpy calls (see
    	https://golang.org/issue/21196), so the arguments here need to be global
    	variables with external linkage in order to ensure that the call traps all the
    	way down into libc.
    	*/
    	strncpy(&x_cgo_yield_strncpy_dst, &x_cgo_yield_strncpy_src,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 18:49:38 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -   <http://www.gnu.org/licenses/>.  */
    +   <https://www.gnu.org/licenses/>.  */
     
     #include <string.h>
    -#include <memcopy.h>
     
     #undef strncpy
     
     #ifndef STRNCPY
    -#define STRNCPY strncpy
    + #define STRNCPY strncpy
     #endif
     
     char *
     STRNCPY (char *s1, const char *s2, size_t n)
     {
    -  char c;
    -  char *s = s1;
    -
    -  --s1;
    -
    -  if (n >= 4)
    -    {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    	printf("\tdesc string\n");
    	printf("} {\n");
    	qsort(errors, nelem(errors), sizeof errors[0], tuplecmp);
    	for(i=0; i<nelem(errors); i++) {
    		e = errors[i].num;
    		if(i > 0 && errors[i-1].num == e)
    			continue;
    		strncpy(buf, strerror(e), sizeof(buf) - 1);
    		buf[sizeof(buf) - 1] = '\0';
    		// lowercase first letter: Bad -> bad, but STREAM -> STREAM.
    		if(A <= buf[0] && buf[0] <= Z && a <= buf[1] && buf[1] <= z)
    			buf[0] += a - A;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #ifdef _MSC_VER
    // Temporarily disable warning 4996 (deprecated function).
    # pragma warning(push)
    # pragma warning(disable:4996)
    #endif
    
    inline const char* StrNCpy(char* dest, const char* src, size_t n) {
      return strncpy(dest, src, n);
    }
    
    // ChDir(), FReopen(), FDOpen(), Read(), Write(), Close(), and
    // StrError() aren't needed on Windows CE at this time and thus not
    // defined there.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #ifdef _MSC_VER
    // Temporarily disable warning 4996 (deprecated function).
    # pragma warning(push)
    # pragma warning(disable:4996)
    #endif
    
    inline const char* StrNCpy(char* dest, const char* src, size_t n) {
      return strncpy(dest, src, n);
    }
    
    // ChDir(), FReopen(), FDOpen(), Read(), Write(), Close(), and
    // StrError() aren't needed on Windows CE at this time and thus not
    // defined there.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api_test.cc

      const int BUFFER_SIZE = 10;
      char buffer[BUFFER_SIZE];
      std::strncpy(buffer, "VALID", BUFFER_SIZE);
      TFE_OpSetAttrString(op, "padding", buffer, std::strlen(buffer));
      // Overwriting value in "buffer", should be fine since TFE_Op
      // shouldn't be holding on to it.
      std::strncpy(buffer, "NHWC", BUFFER_SIZE);
      TFE_OpSetAttrString(op, "data_format", buffer, std::strlen(buffer));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/test.go

    	// nothing to run, just make sure this compiles
    	var x C.size_t
    
    	C.calloc(x, x)
    	C.malloc(x)
    	C.realloc(nil, x)
    	C.memcpy(nil, nil, x)
    	C.memcmp(nil, nil, x)
    	C.memmove(nil, nil, x)
    	C.strncpy(nil, nil, x)
    	C.strncmp(nil, nil, x)
    	C.strncat(nil, nil, x)
    	x = C.strxfrm(nil, nil, x)
    	C.memchr(nil, 0, x)
    	x = C.strcspn(nil, nil)
    	x = C.strspn(nil, nil)
    	C.memset(nil, 0, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.cc

      auto attrs = oper->node.attrs();
      int count = 0;
      AttrValueMap::const_iterator it;
      for (it = attrs.begin(); it != attrs.end(); it++) {
        if (count == i) {
          strncpy(output, it->first.c_str(), it->first.length());
          status->status = absl::OkStatus();
          return;
        }
        count++;
      }
      status->status = OutOfRange("Operation only has ", count,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top