aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/opts/SkUtils_opts.h
blob: ba93305b4ac62ef47f4c997cd2f114c0c3827d96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * Copyright 2017 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkUtils_opts_DEFINED
#define SkUtils_opts_DEFINED

#include "stdint.h"

namespace SK_OPTS_NS {

    static void memset16(uint16_t buffer[], uint16_t value, int count) {
        for (int i = 0; i < count; i++) {
            buffer[i] = value;
        }
    }
    static void memset32(uint32_t buffer[], uint32_t value, int count) {
        for (int i = 0; i < count; i++) {
            buffer[i] = value;
        }
    }
    static void memset64(uint64_t buffer[], uint64_t value, int count) {
        for (int i = 0; i < count; i++) {
            buffer[i] = value;
        }
    }

}

#endif//SkUtils_opts_DEFINED