HomeSort by relevance Sort by last modified time
    Searched refs:zeroed (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue18410.go 9 // non-initialized fields properly zeroed/nil'd
issue8947.go 7 // Some uses of zeroed constants in non-assignment
  /prebuilts/go/linux-x86/test/fixedbugs/
issue18410.go 9 // non-initialized fields properly zeroed/nil'd
issue8947.go 7 // Some uses of zeroed constants in non-assignment
  /external/jemalloc/include/jemalloc/internal/
extent.h 36 * The zeroed flag is used by chunk recycling code to track whether
99 void extent_node_zeroed_set(extent_node_t *node, bool zeroed);
104 size_t size, size_t sn, bool zeroed, bool committed);
198 extent_node_zeroed_set(extent_node_t *node, bool zeroed)
201 node->en_zeroed = zeroed;
227 size_t sn, bool zeroed, bool committed)
234 extent_node_zeroed_set(node, zeroed);
chunk.h 74 bool zeroed, bool committed);
  /external/skia/tests/
ArenaAllocTest.cpp 84 int* zeroed = arena.makeArray<int>(10); local
86 REPORTER_ASSERT(r, zeroed[i] == 0);
110 int* zeroed = arena.makeArray<int>(10); local
112 REPORTER_ASSERT(r, zeroed[i] == 0);
137 int* zeroed = arena.makeArray<int>(10); local
139 REPORTER_ASSERT(r, zeroed[i] == 0);
  /external/skqp/tests/
ArenaAllocTest.cpp 79 int* zeroed = arena.makeArray<int>(10); local
81 REPORTER_ASSERT(r, zeroed[i] == 0);
105 int* zeroed = arena.makeArray<int>(10); local
107 REPORTER_ASSERT(r, zeroed[i] == 0);
132 int* zeroed = arena.makeArray<int>(10); local
134 REPORTER_ASSERT(r, zeroed[i] == 0);
  /prebuilts/go/darwin-x86/src/runtime/
mkduff.go 65 // DI: ptr to memory to be zeroed
100 // DI: ptr to memory to be zeroed
129 // R1: ptr to memory to be zeroed
154 // R16 (aka REGRT1): ptr to memory to be zeroed
155 // On return, R16 points to the last zeroed dword.
186 // R3 (aka REGRT1): ptr to memory to be zeroed - 8
187 // On return, R3 points to the last zeroed dword.
207 // R1 (aka REGRT1): ptr to memory to be zeroed - 8
208 // On return, R1 points to the last zeroed dword.
mfixalloc.go 5 // Fixed-size object allocator. Returned memory is not zeroed.
17 // Memory returned by fixalloc.alloc is zeroed by default, but the
string.go 242 // The storage is not zeroed. Callers should use
255 // rawbyteslice allocates a new byte slice. The byte slice is not zeroed.
267 // rawruneslice allocates a new rune slice. The rune slice is not zeroed.
string_test.go 290 t.Errorf("extra bytes not zeroed")
294 t.Errorf("extra runes not zeroed")
  /prebuilts/go/linux-x86/src/runtime/
mkduff.go 65 // DI: ptr to memory to be zeroed
100 // DI: ptr to memory to be zeroed
129 // R1: ptr to memory to be zeroed
154 // R16 (aka REGRT1): ptr to memory to be zeroed
155 // On return, R16 points to the last zeroed dword.
186 // R3 (aka REGRT1): ptr to memory to be zeroed - 8
187 // On return, R3 points to the last zeroed dword.
207 // R1 (aka REGRT1): ptr to memory to be zeroed - 8
208 // On return, R1 points to the last zeroed dword.
mfixalloc.go 5 // Fixed-size object allocator. Returned memory is not zeroed.
17 // Memory returned by fixalloc.alloc is zeroed by default, but the
string.go 242 // The storage is not zeroed. Callers should use
255 // rawbyteslice allocates a new byte slice. The byte slice is not zeroed.
267 // rawruneslice allocates a new rune slice. The rune slice is not zeroed.
string_test.go 290 t.Errorf("extra bytes not zeroed")
294 t.Errorf("extra runes not zeroed")
  /external/jemalloc/src/
chunk.c 55 bool zeroed, bool committed);
209 bool zeroed, committed; local
248 zeroed = extent_node_zeroed_get(node);
249 if (zeroed)
282 zeroed, committed);
292 + trailsize, *sn, zeroed, committed);
297 trailsize, *sn, zeroed, committed);
306 cache, ret, size, *sn, zeroed, committed);
315 if (!zeroed)
331 * If the caller specifies (!*zero), it is still possible to receive zeroed
    [all...]
  /external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/
periodic.py 527 zeroed = array_ops.where(zeros_mask, array_ops.zeros_like(meshed), meshed)
532 zeroed * global_coefficient[..., None, None]**2)
  /cts/tests/camera/src/android/hardware/camera2/cts/
ExtendedCameraCharacteristicsTest.java 512 ColorSpaceTransform zeroed = new ColorSpaceTransform(zeroes); local
513 mCollector.expectNotEquals("Forward Matrix1 should not contain all zeroes.", zeroed,
515 mCollector.expectNotEquals("Forward Matrix2 should not contain all zeroes.", zeroed,
518 zeroed, c.get(CameraCharacteristics.SENSOR_CALIBRATION_TRANSFORM1));
520 zeroed, c.get(CameraCharacteristics.SENSOR_CALIBRATION_TRANSFORM2));
522 zeroed, c.get(CameraCharacteristics.SENSOR_COLOR_TRANSFORM1));
524 zeroed, c.get(CameraCharacteristics.SENSOR_COLOR_TRANSFORM2));
    [all...]
  /external/libffi/src/powerpc/
darwin.S 249 addi r6,r28,(LINKAGE_SIZE + 7 * GPR_BYTES) ; point to a zeroed counter.
  /external/python/cpython2/Modules/_ctypes/libffi/src/powerpc/
darwin.S 249 addi r6,r28,(LINKAGE_SIZE + 7 * GPR_BYTES) ; point to a zeroed counter.
  /external/python/cpython3/Modules/_ctypes/libffi/src/powerpc/
darwin.S 249 addi r6,r28,(LINKAGE_SIZE + 7 * GPR_BYTES) ; point to a zeroed counter.
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/arm/
a.out.go 356 // so that a zeroed Prog.scond means "always execute".
  /prebuilts/go/linux-x86/src/cmd/internal/obj/arm/
a.out.go 356 // so that a zeroed Prog.scond means "always execute".
  /external/boringssl/ios-arm/crypto/fipsmodule/
ghashv8-armx32.S 122 @ r12 is zeroed just in time

Completed in 374 milliseconds

1 2 3 4